Skip to content

Commit 139bac1

Browse files
authored
Merge pull request #104 from deep-compute/bugfix-error-not-showing-lineno
references #103, ensuring that exception traceback shows line number
2 parents 0e9619a + 2e9d5a7 commit 139bac1

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ deploy:
1919
- basescript/utils.py
2020
- examples/adder.py
2121
- examples/helloworld.py
22-
name: basescript-0.3.5
23-
tag_name: 0.3.5
22+
name: basescript-0.3.6
23+
tag_name: 0.3.6
2424
true:
2525
repo: deep-compute/basescript
2626
- provider: pypi

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)