1
0
mirror of https://github.com/Yubico/yubiadmin.git synced 2025-02-18 08:54:17 +01:00

Missing comma.

This commit is contained in:
Dain Nilsson 2013-05-02 10:53:18 +02:00
parent e137733a20
commit be1225164a

View File

@ -85,7 +85,7 @@ class release(Command):
if not verify:
raise DistutilsSetupError("Error verifying signature!")
tag_opts = ['-s' '-m ' + fullname, fullname]
tag_opts = ['-s', '-m ' + fullname, fullname]
if self.keyid:
tag_opts[0] = '-u ' + self.keyid
self.execute(os.system, ('git tag ' + (' '.join(tag_opts)),))