This commit is contained in:
Costa Shulyupin 2019-11-06 11:49:32 +02:00
parent a7617ebe7b
commit 76f5ec8f20
1 changed files with 2 additions and 3 deletions

View File

@ -1115,9 +1115,8 @@ def main():
elif isinstance(ret, bool) and ret is False: elif isinstance(ret, bool) and ret is False:
sys.exit(os.EX_CONFIG) sys.exit(os.EX_CONFIG)
else: else:
pprint(ret) if (ret is not None):
# if (ret is not None): print(ret)
# print(ret)
except KeyboardInterrupt: except KeyboardInterrupt:
log("\nInterrupted") log("\nInterrupted")