]> git.decadent.org.uk Git - dak.git/commitdiff
Remove bogus raise from an except in check_timestamps()
authorJames Troup <james@nocrew.org>
Fri, 15 Mar 2002 15:51:20 +0000 (15:51 +0000)
committerJames Troup <james@nocrew.org>
Fri, 15 Mar 2002 15:51:20 +0000 (15:51 +0000)
jennifer

index 96077d36976bab095edb2fc254be4f4108eecbb3..d824914bc472bfb7753bc379acc52daa5327a7b6 100755 (executable)
--- a/jennifer
+++ b/jennifer
@@ -2,7 +2,7 @@
 
 # Checks Debian packages from Incoming
 # Copyright (C) 2000, 2001  James Troup <james@nocrew.org>
-# $Id: jennifer,v 1.9 2002-03-14 14:12:04 ajt Exp $
+# $Id: jennifer,v 1.10 2002-03-15 15:51:20 troup Exp $
 
 # 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
@@ -44,7 +44,7 @@ re_is_changes = re.compile (r"(.+?)_(.+?)_(.+?)\.changes$");
 ################################################################################
 
 # Globals
-jennifer_version = "$Revision: 1.9 $";
+jennifer_version = "$Revision: 1.10 $";
 
 Cnf = None;
 Options = None;
@@ -858,7 +858,6 @@ def check_timestamps():
                               time.ctime(ancient_date)));
             except:
                 reject("%s: timestamp check failed; caught %s" % (filename, sys.exc_type));
-                raise;
 
 ################################################################################
 ################################################################################