X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=dak%2Ftest%2F005%2Ftest.py;h=b5d3bbc7caf7c60f69e5859b274b947238b064dd;hb=b612f3da207fa0d75a5d3b204ac8f02bb244231a;hp=5f561fa92d0ea8182ac28ade6d142b1da6966b54;hpb=59fd5aa2a8be3b76dbc968429c457f096adfa472;p=dak.git diff --git a/dak/test/005/test.py b/dak/test/005/test.py index 5f561fa9..b5d3bbc7 100755 --- a/dak/test/005/test.py +++ b/dak/test/005/test.py @@ -1,8 +1,7 @@ #!/usr/bin/env python # Check utils.parse_changes() correctly ignores data outside the signed area -# Copyright (C) 2004 James Troup -# $Id: test.py,v 1.3 2004-03-11 00:22:19 troup Exp $ +# Copyright (C) 2004, 2006 James Troup # 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 @@ -22,15 +21,15 @@ 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)) ################################################################################