Skip to content

Commit ed5a36e

Browse files
references #103, ensuring that exception traceback shows line number
1 parent 0e9619a commit ed5a36e

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

basescript/basescript.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ def start(self):
7979
self.log.warning("exited via keyboard interrupt")
8080
except Exception as e:
8181
self.log.error("exited start function")
82-
raise e
82+
raise
8383
finally:
8484
self._flush_metrics_q.put(None, block=True)
8585
self._flush_metrics_q.put(None, block=True, timeout=1)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def get_long_description():
2525

2626
long_description = get_long_description()
2727

28-
version = "0.3.5"
28+
version = "0.3.6"
2929
setup(
3030
name="basescript",
3131
version=version,

0 commit comments

Comments
 (0)