Quit Iris if no target specified

This commit is contained in:
Matt Wobensmith 2019-07-17 11:15:49 -07:00
Родитель acc2e839e6
Коммит d3c0f1f318
1 изменённых файлов: 4 добавлений и 1 удалений

Просмотреть файл

@ -87,8 +87,11 @@ def main():
def show_control_center():
if get_core_args().control or get_core_args().target is None:
if get_core_args().control:
return True
elif get_core_args().target is None:
exit_iris('No target specified, e.g.: \n\niris your_target\n\nClosing Iris.', status=1)
return False
else:
return False