forked from root/threadr.lostcave.ddnss.de
fixed a syntax error
parent
c1255828b9
commit
7339a5601b
|
@ -1,7 +1,7 @@
|
||||||
#!/usr/bin/python2
|
#!/usr/bin/python2
|
||||||
|
|
||||||
print """
|
print """
|
||||||
Variable Grabbler - version 3.0
|
Variable Grabbler - version 3.1
|
||||||
-------------------------------"""
|
-------------------------------"""
|
||||||
|
|
||||||
# definitions
|
# definitions
|
||||||
|
@ -19,7 +19,7 @@ print "Done."
|
||||||
|
|
||||||
print "Working on file: "+sys.argv[1]
|
print "Working on file: "+sys.argv[1]
|
||||||
for variable in config_values:
|
for variable in config_values:
|
||||||
print "> "+variable " => ",
|
print "> "+variable+" => ",
|
||||||
file_in = open(sys.argv[1], "r")
|
file_in = open(sys.argv[1], "r")
|
||||||
file_content = file_in.read()
|
file_content = file_in.read()
|
||||||
file_in.close()
|
file_in.close()
|
||||||
|
|
Loading…
Reference in New Issue