Working version.
authorFlorent Bruneau <florent.bruneau@polytechnique.org>
Sun, 12 Oct 2008 10:20:46 +0000 (12:20 +0200)
committerFlorent Bruneau <florent.bruneau@polytechnique.org>
Sun, 12 Oct 2008 10:20:46 +0000 (12:20 +0200)
Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
tools/postgrey2postlicyd

index 2c50b74..c9d369a 100755 (executable)
@@ -42,9 +42,9 @@ import os, re, sys
 def process(infile, outfile):
 
     # Write headers
-    file.write("# Do not edit, file autogenerated by %s\n" % sys.argv[0])
+    outfile.write("# Do not edit, file autogenerated by %s\n" % sys.argv[0])
     if len(sys.argv) > 1 and sys.argv[1] != '-':
-        file.write("# This file has been generated from %s\n" % sys.argv[1])
+        outfile.write("# This file has been generated from %s\n" % sys.argv[1])
 
     re_domain_name = re.compile(r'[a-z0-9.\-]+\.[a-z]+')
     re_ip_address = re.compile(r'\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}')