# HG changeset patch # User Jeff Hammel # Date 1379476070 25200 # Node ID 5db2844b83009bd6defd219bd5065fe9d4cb9512 # Parent bb0f58ae318ee74e8754cdebf6a279cd2bb3aa8b fix diff -r bb0f58ae318e -r 5db2844b8300 configuration/configuration.py --- 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) diff -r bb0f58ae318e -r 5db2844b8300 setup.py --- 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: