From ed9a7c27aabf5a947c640d5db8daedbf6867439e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludger=20K=C3=BCperkoch?= Date: Tue, 4 Jun 2019 14:22:08 +0200 Subject: [PATCH] Additional information on the screen. --- pylot/core/util/dataprocessing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pylot/core/util/dataprocessing.py b/pylot/core/util/dataprocessing.py index 55d76677..74521975 100644 --- a/pylot/core/util/dataprocessing.py +++ b/pylot/core/util/dataprocessing.py @@ -288,7 +288,6 @@ class Metadata(object): if file_ending in read_functions.keys(): robj, exc = read_functions[file_ending](path_to_inventory_filename) if exc is not None: - print("Nicht None") raise exc return file_ending, robj # in case file endings did not match the above keys, try and error @@ -590,6 +589,7 @@ def restitute_trace(input_tuple): if invtype in ['resp', 'dless']: try: tr.simulate(**kwargs) + print("Done") except ValueError as e: vmsg = '{0}'.format(e) print(vmsg)