forked from root/threadr.lostcave.ddnss.de
16 lines
234 B
Python
16 lines
234 B
Python
|
#!/usr/bin/python2
|
||
|
|
||
|
print """
|
||
|
Variable Grabbler - version 1.0
|
||
|
-------------------------------"""
|
||
|
|
||
|
# definitions
|
||
|
|
||
|
|
||
|
print "Opening config file..."
|
||
|
config = open("variable_grabbler.conf","r")
|
||
|
|
||
|
print next_variable(config)
|
||
|
|
||
|
config.close()
|