Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Ensure we expand path of init command
  • Loading branch information
dcramer committed Dec 15, 2012
1 parent 83d66ea commit 642433b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion logan/runner.py
Expand Up @@ -125,7 +125,7 @@ def run_app(**kwargs):

settings_initializer = kwargs.get('settings_initializer')

config_path = ' '.join(opt_args[1:]) or default_config_path
config_path = os.path.expanduser(' '.join(opt_args[1:]) or default_config_path)

if os.path.exists(config_path):
resp = None
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -14,7 +14,7 @@

setup(
name='logan',
version='0.5.2',
version='0.5.3',
author='David Cramer',
author_email='dcramer@gmail.com',
url='http://github.com/dcramer/logan',
Expand Down

0 comments on commit 642433b

Please sign in to comment.