Fix typo that made push fail in writeAuthorizedKeys.

This commit is contained in:
Tommi Virtanen 2007-12-31 21:30:36 +02:00
parent e495c9a66e
commit 5b3f2f7a4d

View file

@ -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