From 381930bcfa8b8c398b4f0dcf825c72f8fc3d1462 Mon Sep 17 00:00:00 2001
From: James Troup <james@nocrew.org>
Date: Tue, 14 May 2002 15:29:18 +0000
Subject: [PATCH] shorter if list not null test

---
 heidi | 4 ++--
 ziyi  | 6 +++---
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/heidi b/heidi
index e2fba0bf..e708cbdf 100755
--- a/heidi
+++ b/heidi
@@ -2,7 +2,7 @@
 
 # Manipulate suite tags
 # Copyright (C) 2000, 2001, 2002  James Troup <james@nocrew.org>
-# $Id: heidi,v 1.13 2002-05-03 16:06:45 troup Exp $
+# $Id: heidi,v 1.14 2002-05-14 15:29:18 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
@@ -278,7 +278,7 @@ def main ():
         get_list(suite);
     else:
         Logger = logging.Logger(Cnf, "heidi");
-        if file_list != []:
+        if file_list:
             for file in file_list:
                 process_file(utils.open_file(file), suite, action);
         else:
diff --git a/ziyi b/ziyi
index c7aa2db3..1bd18b2f 100755
--- a/ziyi
+++ b/ziyi
@@ -3,7 +3,7 @@
 # Create all the Release files
 
 # Copyright (C) 2001, 2002  Anthony Towns <ajt@debian.org>
-# $Id: ziyi,v 1.18 2002-05-08 11:17:53 troup Exp $
+# $Id: ziyi,v 1.19 2002-05-14 15:29:18 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
@@ -162,7 +162,7 @@ def main ():
 	    components = []
 
 	nonus = 1
-	if components != []:
+	if components:
 	    for c in components:
 	        if string.find(c, "non-US/") != 0:
 		    nonus = 0
@@ -206,7 +206,7 @@ def main ():
 	if notautomatic != "":
 	    out.write("NotAutomatic: %s\n" % (notautomatic))
 	out.write("Architectures: %s\n" % (string.join(filter(real_arch, SuiteBlock.SubTree("Architectures").List()))))
-	if components != []:
+	if components:
             out.write("Components: %s\n" % (string.join(components)))
 
 	out.write("Description: %s\n" % (SuiteBlock["Description"]))
-- 
2.39.5