]> git.decadent.org.uk Git - dak.git/commitdiff
fix boneheaded c+p error
authorMark Hymers <mhy@debian.org>
Sun, 31 May 2009 14:54:44 +0000 (15:54 +0100)
committerMark Hymers <mhy@debian.org>
Sun, 9 Aug 2009 15:49:26 +0000 (16:49 +0100)
Signed-off-by: Mark Hymers <mhy@debian.org>
dak/admin.py

index 467b265c5c3fdd6c0de339eadd1bd37ad770213d..e3d5298a36bf8d903b562b659414e37baed2f8a1 100755 (executable)
@@ -182,10 +182,10 @@ def suite(command):
 
     if mode == 'list':
         __suite_list(d, args)
-    if mode == 'show':
+    elif mode == 'show':
         __suite_show(d, args)
     else:
-        die("E: suite-architecture command unknown")
+        die("E: suite command unknown")
 
 dispatch['suite'] = suite
 dispatch['s'] = suite