setup_part reparieren
parent
5fe7633b00
commit
2ca8ae4f10
|
|
@ -54,7 +54,7 @@ def main():
|
|||
return
|
||||
else:
|
||||
if len(argv) != 2:
|
||||
if len(argv) == 3 and argv[1] in ['update', 'install', 'uninstall', 'cancel_update' 'setup_part']:
|
||||
if len(argv) == 3 and argv[1] in ['update', 'install', 'uninstall', 'cancel_update', 'setup_part']:
|
||||
# 'update' requires additional param 'module_name'
|
||||
pass
|
||||
else:
|
||||
|
|
@ -182,8 +182,8 @@ def main():
|
|||
]
|
||||
|
||||
if cmd == 'setup_part':
|
||||
if ((argv[2] == 'info') or (not (argv[2] in setup_methods))):
|
||||
print '\nVerfügbare setup Methoden: ' + str(setup_methods) + '\n'
|
||||
if (argv[2] == 'info') or (not (argv[2] in setup_methods)):
|
||||
print '\nVerfügbare Setup-Schritte: ' + str(setup_methods) + '\n'
|
||||
return
|
||||
|
||||
methods = [
|
||||
|
|
|
|||
Loading…
Reference in New Issue