-for script in scripts:
-    batfile = os.path.join(scriptdir, script + '.bat')
-    print "Creating", batfile
-    f = open(batfile, 'w')
-    f.write(template % vars())
-    f.close()
+def main():
+    for script, usegui in scripts:
+        batfile = os.path.join(scriptdir, script + '.bat')
+        print "Creating", batfile
+        f = open(batfile, 'w')
+        if usegui:
+            f.write(template % (pythonw, scriptdir, script))
+        else:
+            f.write(template % (python, scriptdir, script))
+        f.close()
+