]> git.decadent.org.uk Git - dak.git/commitdiff
shorter if list not null test
authorJames Troup <james@nocrew.org>
Tue, 14 May 2002 15:33:51 +0000 (15:33 +0000)
committerJames Troup <james@nocrew.org>
Tue, 14 May 2002 15:33:51 +0000 (15:33 +0000)
natalie

diff --git a/natalie b/natalie
index 74b59f802672e9277acdf6460d7c02f861324eaa..456840fe0bf2be901d2d5d136e0b60fe6ee1ed3a 100755 (executable)
--- a/natalie
+++ b/natalie
@@ -2,7 +2,7 @@
 
 # Manipulate override files
 # Copyright (C) 2000, 2001, 2002  James Troup <james@nocrew.org>
-# $Id: natalie,v 1.1 2002-05-08 11:15:38 troup Exp $
+# $Id: natalie,v 1.2 2002-05-14 15:33:51 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
@@ -245,7 +245,7 @@ def main ():
         list(suite, component, type);
     else:
         Logger = logging.Logger(Cnf, "natalie");
-        if file_list != []:
+        if file_list:
             for file in file_list:
                 process_file(utils.open_file(file), suite, component, type);
         else: