summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2017-10-12 01:23:40 +0200
committermathieui <mathieui@mathieui.net>2017-10-12 01:23:40 +0200
commit3317604c6544a488bec749c06a52382971b60790 (patch)
treec7a8ff4b7019c6b1ab2a69f657dc4c5867ffd29c /plugins
parentb29b70da0ff89fc24b2118c047f2071edcd36384 (diff)
downloadpoezio-3317604c6544a488bec749c06a52382971b60790.tar.gz
poezio-3317604c6544a488bec749c06a52382971b60790.tar.bz2
poezio-3317604c6544a488bec749c06a52382971b60790.tar.xz
poezio-3317604c6544a488bec749c06a52382971b60790.zip
Fix some excepts (bare, useless, unused)
Diffstat (limited to 'plugins')
-rw-r--r--plugins/reminder.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/reminder.py b/plugins/reminder.py
index b26ca4a0..e3ba64cb 100644
--- a/plugins/reminder.py
+++ b/plugins/reminder.py
@@ -116,7 +116,7 @@ class Plugin(BasePlugin):
def command_done(self, arg="0"):
try:
id_ = int(arg)
- except:
+ except ValueError:
return
if id_ not in self.tasks:
return