You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
547 B
20 lines
547 B
6 years ago
|
import os
|
||
|
import sys
|
||
|
import getopt
|
||
|
|
||
|
config_dir = os.path.join(os.path.dirname(__file__), 'data/')
|
||
|
no_update = False
|
||
|
|
||
|
try:
|
||
|
opts, args = getopt.getopt(sys.argv[1:],"h:",["no-update", "config="])
|
||
|
except getopt.GetoptError:
|
||
|
print 'bazarr.py -h --no-update --config <config_directory>'
|
||
|
sys.exit(2)
|
||
|
for opt, arg in opts:
|
||
|
if opt == '-h':
|
||
|
print 'bazarr.py -h --no-update --config <config_directory>'
|
||
|
sys.exit()
|
||
|
elif opt in ("--no-update"):
|
||
|
no_update = True
|
||
|
elif opt in ("--config"):
|
||
|
config_dir = arg
|