summaryrefslogtreecommitdiffstats
path: root/pyload/Core.py
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-04-13 16:58:32 +0200
committerGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-04-13 16:58:32 +0200
commit26bc06d1422146e73025f84b073b8854660fba69 (patch)
treee804c4cd6064e49ab910ef976089c7cf12cbaef2 /pyload/Core.py
parentImprove Setup a bit (diff)
downloadpyload-26bc06d1422146e73025f84b073b8854660fba69.tar.xz
Fix except
Diffstat (limited to 'pyload/Core.py')
-rwxr-xr-xpyload/Core.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyload/Core.py b/pyload/Core.py
index 0cc10df6e..d3e23309a 100755
--- a/pyload/Core.py
+++ b/pyload/Core.py
@@ -538,7 +538,7 @@ class Core(object):
for i in range(3, 50):
try:
close(i)
- except :
+ except Exception:
pass
execl(executable, executable, *sys.argv)