]> git.decadent.org.uk Git - dak.git/blobdiff - dak/test/003/test.py
Enmasse adaptation for removal of silly names.
[dak.git] / dak / test / 003 / test.py
index f8277f873e7a215f99f5894fc134786e7338a9cb..6e3935b2840fd73318aa1a83c7e9302f6a6e7df7 100755 (executable)
@@ -1,7 +1,7 @@
 #!/usr/bin/env python
 
 # Check utils.parse_changes()'s for handling of multi-line fields
-# Copyright (C) 2000  James Troup <james@nocrew.org>
+# Copyright (C) 2000, 2006  James Troup <james@nocrew.org>
 # $Id: test.py,v 1.2 2002-10-16 02:47:32 troup Exp $
 
 # This program is free software; you can redistribute it and/or modify
@@ -20,7 +20,7 @@
 
 ################################################################################
 
-# The deal here is that for the first 6 months of katie's
+# The deal here is that for the first 6 months of dak's
 # implementation it has been misparsing multi-line fields in .changes
 # files; specifically multi-line fields where there _is_ data on the
 # first line. So, for example:
 
 import os, sys
 
-sys.path.append(os.path.abspath('../../'));
+sys.path.append(os.path.abspath('../../'))
 
 import utils
 
 ################################################################################
 
 def fail(message):
-    sys.stderr.write("%s\n" % (message));
-    sys.exit(1);
+    sys.stderr.write("%s\n" % (message))
+    sys.exit(1)
 
 ################################################################################
 
@@ -51,7 +51,7 @@ def main ():
     try:
         changes = utils.parse_changes('krb5_1.2.2-4_m68k.changes', 0)
     except utils.changes_parse_error_exc, line:
-        fail("parse_changes() returned an exception with error message `%s'." % (line));
+        fail("parse_changes() returned an exception with error message `%s'." % (line))
 
     o = changes.get("binary", "")
     if o != "":
@@ -61,7 +61,7 @@ def main ():
         changes["binary"][j] = 1
 
     if not changes["binary"].has_key("krb5-ftpd"):
-        fail("parse_changes() is broken; 'krb5-ftpd' is not in the Binary: dictionary.");
+        fail("parse_changes() is broken; 'krb5-ftpd' is not in the Binary: dictionary.")
 
 ################################################################################