Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
FIX: Exceptionbehandlung hatte Exception ausgeloest
  • Loading branch information
ActionLuzifer committed Mar 24, 2012
1 parent a4bfce0 commit 65e66de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/Downloader/Intern.py
Expand Up @@ -28,8 +28,8 @@ def download(self, id, castFileName, url, status):
castFile.write(downloaddingens.read())
except:
exctype, value = sys.exc_info()[:2]
print("ERROR"+exctype)
print(" ->"+value)
print("ERROR"+repr(exctype))
print(" ->"+repr(value))
isError = True
finally:
castFile.close()
Expand Down

0 comments on commit 65e66de

Please sign in to comment.