]> git.decadent.org.uk Git - dak.git/blobdiff - dak/test/005/test.py
Local security-master changes
[dak.git] / dak / test / 005 / test.py
index 5f561fa92d0ea8182ac28ade6d142b1da6966b54..b5d3bbc7caf7c60f69e5859b274b947238b064dd 100755 (executable)
@@ -1,8 +1,7 @@
 #!/usr/bin/env python
 
 # Check utils.parse_changes() correctly ignores data outside the signed area
-# Copyright (C) 2004  James Troup <james@nocrew.org>
-# $Id: test.py,v 1.3 2004-03-11 00:22:19 troup Exp $
+# Copyright (C) 2004, 2006  James Troup <james@nocrew.org>
 
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
 
 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)
 
 ################################################################################
 
@@ -40,10 +39,10 @@ def main ():
             try:
                 changes = utils.parse_changes("%s.changes" % (file), strict_whitespace)
             except utils.changes_parse_error_exc, line:
-                fail("%s[%s]: parse_changes() returned an exception with error message `%s'." % (file, strict_whitespace, line));
-            oh_dear = changes.get("you");
+                fail("%s[%s]: parse_changes() returned an exception with error message `%s'." % (file, strict_whitespace, line))
+            oh_dear = changes.get("you")
             if oh_dear:
-                fail("%s[%s]: parsed and accepted unsigned data!" % (file, strict_whitespace));
+                fail("%s[%s]: parsed and accepted unsigned data!" % (file, strict_whitespace))
 
 ################################################################################