X-Git-Url: https://snippets.scripts.mit.edu/gitweb.cgi/Scripts/git/.git/blobdiff_plain/1711d1acafd9045080e3d1c9810945b642e2dc12..a7c202e35cf46295abd47908631b8e3669a096e2:/TracZephyrPlugin/ZephyrPlugin.py diff --git a/TracZephyrPlugin/ZephyrPlugin.py b/TracZephyrPlugin/ZephyrPlugin.py index 8daedd1..673c339 100644 --- a/TracZephyrPlugin/ZephyrPlugin.py +++ b/TracZephyrPlugin/ZephyrPlugin.py @@ -22,6 +22,9 @@ class ZephyrPlugin(Component): opcode = self.config.get('ZephyrPlugin', 'opcode') if opcode: command += ['-O', opcode] + signature = self.config.get('ZephyrPlugin', 'signature') + if signature: + command += ['-s', signature] p = subprocess.Popen(command + ['-c', zclass, '-i', 'trac-#%s' % id],