aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTommi Virtanen <tv@eagain.net>2007-12-31 21:30:36 +0200
committerTommi Virtanen <tv@eagain.net>2007-12-31 21:30:41 +0200
commit5b3f2f7a4d5916f80c2e797d0a12c4c250933769 (patch)
tree0f1fb0b82d179e35e6b81c41bf79ebc784b385e1
parentMake post-update hook reload config after writing it out. (diff)
downloadgitosis-dakkar-5b3f2f7a4d5916f80c2e797d0a12c4c250933769.tar.gz
gitosis-dakkar-5b3f2f7a4d5916f80c2e797d0a12c4c250933769.tar.bz2
gitosis-dakkar-5b3f2f7a4d5916f80c2e797d0a12c4c250933769.zip
Fix typo that made push fail in writeAuthorizedKeys.
-rw-r--r--gitosis/util.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gitosis/util.py b/gitosis/util.py
index a1b8c76..479b2e9 100644
--- a/gitosis/util.py
+++ b/gitosis/util.py
@@ -32,5 +32,5 @@ def getSSHAuthorizedKeysPath(config):
try:
path = config.get('gitosis', 'ssh-authorized-keys-path')
except (NoSectionError, NoOptionError):
- path = os.path.expanduser('~/.ssh/authorized_keys'),
+ path = os.path.expanduser('~/.ssh/authorized_keys')
return path