check-mirrors check-mirrors.py,1.7,1.8

Seth Vidal (skvidal) fedora-extras-commits at redhat.com
Tue Jul 11 20:18:01 UTC 2006


Author: skvidal

Update of /cvs/fedora/check-mirrors
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv17490

Modified Files:
	check-mirrors.py 
Log Message:
change ordering of negation in if statement :)




Index: check-mirrors.py
===================================================================
RCS file: /cvs/fedora/check-mirrors/check-mirrors.py,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- check-mirrors.py	11 Jul 2006 20:17:23 -0000	1.7
+++ check-mirrors.py	11 Jul 2006 20:17:58 -0000	1.8
@@ -378,7 +378,7 @@
         
         # clean up
         for fn in old_file_list:
-            if not fn in new_file_list:
+            if fn not in new_file_list:
                 if debug: print "removing old file %s" % fn 
                 os.unlink(fn)
         




More information about the fedora-extras-commits mailing list