From dcb889bc5288e43157e12bcec0ad68f7a4fc131e Mon Sep 17 00:00:00 2001 From: Tommi Virtanen Date: Mon, 31 Dec 2007 21:30:36 +0200 Subject: Fix typo that made push fail in writeAuthorizedKeys. --- gitosis/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gitosis/util.py b/gitosis/util.py index d9f3447..248cb7b 100644 --- a/gitosis/util.py +++ b/gitosis/util.py @@ -79,5 +79,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 -- cgit v1.2.3