changeset 124:5db2844b8300

fix
author Jeff Hammel <jhammel@mozilla.com>
date Tue, 17 Sep 2013 20:47:50 -0700
parents bb0f58ae318e
children c6a41a60afc0
files configuration/configuration.py setup.py
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/configuration/configuration.py	Tue Sep 17 20:13:16 2013 -0700
+++ b/configuration/configuration.py	Tue Sep 17 20:47:50 2013 -0700
@@ -588,7 +588,7 @@
         self.config_name = config or '.' + os.path.splitext(sys.argv[0])[0]
         self.default_config_file = os.path.join('~', self.config_name)
         self.default_config_file_path = os.path.expanduser(self.default_config_file)
-        if os.path.exists(self.default_config_file_path)
+        if os.path.exists(self.default_config_file_path):
             self.load_help += ' [DEFAULT: %s]' % default_config_file
 
         Configuration.__init__(self, usage=self.usage, load=load)
--- a/setup.py	Tue Sep 17 20:13:16 2013 -0700
+++ b/setup.py	Tue Sep 17 20:47:50 2013 -0700
@@ -4,7 +4,7 @@
 
 import os
 
-version = "0.4"
+version = "0.4.1"
 dependencies = ['PyYAML']
 
 try: