diff options
author | Lukas Fleischer <lfleischer@archlinux.org> | 2016-09-29 21:03:54 +0200 |
---|---|---|
committer | Lukas Fleischer <lfleischer@archlinux.org> | 2016-09-29 22:07:24 +0200 |
commit | e1709e98ce623aee8062e98a859bcb43553e2faf (patch) | |
tree | 1de59c4c4453a82074580993c787cfcfaca47b28 | |
parent | c8c37477864638ca37088433f0061e5b62f6986f (diff) | |
download | aur-e1709e98ce623aee8062e98a859bcb43553e2faf.tar.gz aur-e1709e98ce623aee8062e98a859bcb43553e2faf.tar.xz |
tuvotereminder: Wait for notify processes
Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
-rwxr-xr-x | scripts/tuvotereminder.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/tuvotereminder.py b/scripts/tuvotereminder.py index a053608d..97b1d12e 100755 --- a/scripts/tuvotereminder.py +++ b/scripts/tuvotereminder.py @@ -21,7 +21,7 @@ def main(): [filter_from, filter_to]) for vote_id in [row[0] for row in cur.fetchall()]: - subprocess.Popen((notify_cmd, 'tu-vote-reminder', str(vote_id))) + subprocess.Popen((notify_cmd, 'tu-vote-reminder', str(vote_id))).wait() if __name__ == '__main__': |