diff options
author | Thomas Kahle <tom111@gmx.de> | 2011-03-22 13:57:50 +0100 |
---|---|---|
committer | Thomas Kahle <tom111@gmx.de> | 2011-03-22 13:58:53 +0100 |
commit | 32a1f78927c348eb6f3299bdce79852cf716f816 (patch) | |
tree | c9f9766cdb52aa13a2e132f153c9dc224fdae66f /scripts | |
parent | Adding options to resolve and close bugs with tatt. (diff) | |
download | tatt-32a1f78927c348eb6f3299bdce79852cf716f816.tar.gz tatt-32a1f78927c348eb6f3299bdce79852cf716f816.tar.bz2 tatt-32a1f78927c348eb6f3299bdce79852cf716f816.zip |
Document the new options and some fixes
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/tatt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/tatt b/scripts/tatt index d2868ee..0251100 100755 --- a/scripts/tatt +++ b/scripts/tatt @@ -188,9 +188,9 @@ if options.resolvenum: print("Please call with a message per -m") exit (1) print("Resolving bug number " + options.resolvenum) - calllist = ['bugz', 'modify', options.resolvenum, '-c', config['resolvemessage'], '--remove-cc', config['arch']+"@gentoo.org"] + calllist = ['bugz', 'modify', options.resolvenum, '-c', options.resolvemessage, '--remove-cc', config['arch']+"@gentoo.org"] if options.close: - calllist = callist + ['--fixed'] + calllist = calllist + ['--fixed'] retcode = call(calllist) if retcode == 0: print("Success!"); |