aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Kahle <tom111@gmx.de>2011-03-19 21:02:55 +0100
committerThomas Kahle <tom111@gmx.de>2011-03-19 21:02:55 +0100
commit3880adcfb41431cb0d996901a6e7224c02f09e0e (patch)
treefc4420a041eca659033c308ddc4be983a36e75dc /scripts
parentMake number of tests customizable through .tatt file. (diff)
downloadtatt-3880adcfb41431cb0d996901a6e7224c02f09e0e.tar.gz
tatt-3880adcfb41431cb0d996901a6e7224c02f09e0e.tar.bz2
tatt-3880adcfb41431cb0d996901a6e7224c02f09e0e.zip
removed --skip-auth from 'bugz' call.
This is necessary to be compatible with version -0.9 and higher of pybugz. You now need to configure your credentials by making an alias like alias bugs="bugz -u username -p password"
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/tatt2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/tatt b/scripts/tatt
index ba571ca..22e73bb 100755
--- a/scripts/tatt
+++ b/scripts/tatt
@@ -111,7 +111,7 @@ if options.bugnum:
print("Bugnumber: " + options.bugnum)
# If packs is still empty we search in the bug-title
if packs==None:
- p1 = Popen(['bugz', 'get', options.bugnum, '-n', '--skip-auth'], stdout=PIPE)
+ p1 = Popen(['bugz', 'get', options.bugnum, '-n'], stdout=PIPE)
bugraw = Popen(['grep', 'Title'], stdin=p1.stdout, stdout=PIPE).communicate()[0]
if not re.search('[Ss][Tt][Aa][Bb]', bugraw):
print("Does not look like a stable request bug !")