aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar xujian <iamxujian@gmail.com> 2014-12-16 16:52:25 +0800
committerGravatar Jon Bernard <jbernard@tuxion.com> 2014-12-16 12:18:30 -0500
commit572a7285c6ac1e59d16dbe859138bf1ee4f6ea0b (patch)
tree4f28c7318bdbe75c30783579df1aebf5d0902e07
parent0982269eb385371c2148c4e00dc5c1e5fb6f58e5 (diff)
downloaddotfiles-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.py2
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):