Skip to content

Commit

Permalink
fix: no longer notify on exception
Browse files Browse the repository at this point in the history
  • Loading branch information
shano committed Dec 5, 2020
1 parent 19b1493 commit f651f47
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ include = '\.pyi?$'

[tool.poetry]
name = "streamkeeper"
version = "2.0.0"
version = "2.0.1"
description = "Keep those livestreams to watch whenever you want"
authors = ["Shane Dowling"]
readme = "README.md"
Expand Down
3 changes: 1 addition & 2 deletions streamkeeper/streamkeeper.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,7 @@ def run(self):
"Converted video -> %s" % stream_name, title="Stream Converted",
)
time.sleep(int(self.config["DISCOVERY"]["TIME_BETWEEN_SCAN_SECONDS"]))
except Exception as e:
self.notifier.notify("Exception happened %s" % repr(e))
except Exception:
time.sleep(int(self.config["DISCOVERY"]["TIME_BETWEEN_SCAN_SECONDS"]))

def start(self, run_type="process"):
Expand Down

0 comments on commit f651f47

Please sign in to comment.