diff --git a/src/python/OBis/obis/dm/data_mgmt.py b/src/python/OBis/obis/dm/data_mgmt.py index 17f0c775329afec5bf820d6b23c664095db275c6..46ad2c874faed0658b0b9ef5c9ce2fd25c7d25ee 100644 --- a/src/python/OBis/obis/dm/data_mgmt.py +++ b/src/python/OBis/obis/dm/data_mgmt.py @@ -261,14 +261,12 @@ class GitDataMgmt(AbstractDataMgmt): try: cmd = Clone(self, data_set_id, ssh_user, content_copy_index) return cmd.run() - except Exception: - traceback.print_exc() - return CommandResult(returncode=-1, output="Could not clone repository.") + except Exception as e: + return CommandResult(returncode=-1, output="Error: " + str(e)) def addref(self): try: cmd = Addref(self) return cmd.run() - except Exception: - traceback.print_exc() - return CommandResult(returncode=-1, output="Could not add reference.") + except Exception as e: + return CommandResult(returncode=-1, output="Error: " + str(e))