Skip to content

Commit

Permalink
Fixed notifier log for subproc.
Browse files Browse the repository at this point in the history
  • Loading branch information
Adrien Delle Cave committed Dec 14, 2019
1 parent a74c460 commit 8296a10
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
python-dwho (0.3.15) unstable; urgency=medium

* Fixed notifier log for subproc.

-- Adrien DELLE CAVE (Decryptus) <adc@doowan.net> Sat, 14 Dec 2019 14:56:06 +0100

python-dwho (0.3.14) unstable; urgency=medium

* Fixed notifier.
Expand Down
2 changes: 1 addition & 1 deletion RELEASE
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.3.14
0.3.15
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.3.14
0.3.15
2 changes: 1 addition & 1 deletion dwho/classes/notifiers.py
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ def _proc_std(std, log, texit):
try:
for x in iter(std.readline, b''):
if x != '':
log(x)
log(x.rstrip())
except Exception as e:
LOG.exception(e)
break
Expand Down
4 changes: 2 additions & 2 deletions setup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ description: dwho
author: Adrien Delle Cave
author_email: pypi@doowan.net
copyright: '2019 Adrien Delle Cave'
release: '0.3.14'
version: '0.3.14'
release: '0.3.15'
version: '0.3.15'
license: License GPL-3
url: https://github.com/decryptus/dwho
python_requires:
Expand Down

0 comments on commit 8296a10

Please sign in to comment.