From 5b3f2f7a4d5916f80c2e797d0a12c4c250933769 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 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 -- cgit v1.2.3