mirror of
https://github.com/kastdeur/bwwtolily.git
synced 2024-11-22 11:53:32 +01:00
Version increment and fix of printing of version
This commit is contained in:
parent
cdc4e68603
commit
9c2c0f76bb
1 changed files with 2 additions and 2 deletions
|
@ -7,7 +7,7 @@
|
||||||
from optparse import OptionParser
|
from optparse import OptionParser
|
||||||
import sys,os,re,subprocess
|
import sys,os,re,subprocess
|
||||||
|
|
||||||
version = "0.4.1"
|
version = "0.4.2"
|
||||||
|
|
||||||
#make a print function to handle various version of python
|
#make a print function to handle various version of python
|
||||||
def do_print(string):
|
def do_print(string):
|
||||||
|
@ -369,7 +369,7 @@ if __name__ == "__main__" :
|
||||||
#parse the args
|
#parse the args
|
||||||
(options, args) = parser.parse_args()
|
(options, args) = parser.parse_args()
|
||||||
if options.version:
|
if options.version:
|
||||||
do_print( "bwwtolily: ",version)
|
do_print( "bwwtolily: "+version)
|
||||||
sys.exit()
|
sys.exit()
|
||||||
|
|
||||||
if options.input!=None:
|
if options.input!=None:
|
||||||
|
|
Loading…
Reference in a new issue