Skip to content

Commit

Permalink
Fixed subproc notifier.
Browse files Browse the repository at this point in the history
  • Loading branch information
Adrien Delle Cave committed Dec 19, 2019
1 parent e0a0062 commit 5c1e45a
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 4 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.19) unstable; urgency=medium

* Fixed subproc notifier.

-- Adrien DELLE CAVE (Decryptus) <adc@doowan.net> Thu, 19 Dec 2019 17:55:15 +0100

python-dwho (0.3.18) unstable; urgency=medium

* Reviewed requirements.
Expand Down
2 changes: 1 addition & 1 deletion RELEASE
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.3.18
0.3.19
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.3.18
0.3.19
4 changes: 4 additions & 0 deletions dwho/classes/notifiers.py
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,10 @@ def _mk_args(name, args, cargs, targs, xvars):
LOG.error("invalid template argument %r for notifier: %r", x, name)
return None

if '{' in x and '}' in x:
x = x.format(**xvars)
r.append(x)

return r

@staticmethod
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.18'
version: '0.3.18'
release: '0.3.19'
version: '0.3.19'
license: License GPL-3
url: https://github.com/decryptus/dwho
python_requires:
Expand Down

0 comments on commit 5c1e45a

Please sign in to comment.