--- john-1.7.6-jumbo-7.org/run/netscreen.py	2010-08-24 01:54:02.000000000 +0000
+++ john-1.7.6-jumbo-7.rbh/run/netscreen.py	2010-08-30 21:33:42.000000000 +0000
@@ -1,6 +1,8 @@
 ##################################################################
 #  Filename: netscreen.py
 #
+#  Please note this script will not run in Python version 3.x
+#
 # This script will generate a netscreen formatted password
 #
 # This program requires two commandline arguments, and works in two modes:
@@ -22,6 +24,9 @@
 # Output will be the username and hashed password in John the Ripper format  
 # If reading usernames and passwords from a file, the output file name will be: netscreen-JtR-output.txt  
 #
+#  Version 2.01
+#  Updated on August 30, 2010 by Robert B. Harris from VA 
+#    Very minor changes, removed tab, noted it won't run in python 3.x
 #  Version  2.0  
 #  Updated on August 12, 2010 by Robert B. Harris from VA 
 #    Updated to use the hashlib library
@@ -69,7 +74,7 @@ if __name__ == '__main__':
           password = data[1]
           ciphertext = net(username,password)
           output_file.write ("%s:%s$%s" % (username,username,ciphertext))
-	  output_file.write ("\n")
+          output_file.write ("\n")
        input_file.close()
        print "\nThe output file has been created."
        output_file.close()
