diff options
author | xujian <iamxujian@gmail.com> | 2014-12-16 16:52:25 +0800 |
---|---|---|
committer | Jon Bernard <jbernard@tuxion.com> | 2014-12-16 12:18:30 -0500 |
commit | 572a7285c6ac1e59d16dbe859138bf1ee4f6ea0b (patch) | |
tree | 4f28c7318bdbe75c30783579df1aebf5d0902e07 | |
parent | 0982269eb385371c2148c4e00dc5c1e5fb6f58e5 (diff) | |
download | dotfiles-572a7285c6ac1e59d16dbe859138bf1ee4f6ea0b.tar.gz dotfiles-572a7285c6ac1e59d16dbe859138bf1ee4f6ea0b.tar.bz2 dotfiles-572a7285c6ac1e59d16dbe859138bf1ee4f6ea0b.zip |
Fix error in syntax for missing repo message
Fixes #45
-rw-r--r-- | dotfiles/cli.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dotfiles/cli.py b/dotfiles/cli.py index b0e2ea9..285f002 100644 --- a/dotfiles/cli.py +++ b/dotfiles/cli.py @@ -52,7 +52,7 @@ look like: repository = {0} Type 'dotfiles -h' to see detailed usage information.""".format - (repo_settings['path']), CONFIG_FILE) + (repo_settings['path'], CONFIG_FILE)) def add_global_flags(parser): |