Use new except syntax

This commit is contained in:
Yotam Nachum
2022-09-12 12:41:05 +03:00
committed by Orip
parent 8f5cca32f4
commit c5b7077a40
+2 -2
View File
@@ -63,7 +63,7 @@ class Capture(NSObject):
})
script.on('message', self._onScriptMessage)
script.load()
except Exception, e:
except Exception as e:
if session is not None:
try:
session.detach()
@@ -93,7 +93,7 @@ class Capture(NSObject):
pool = NSAutoreleasePool.alloc().init()
try:
script.post(message)
except Exception, e:
except Exception as e:
print "Failed to post to script:", e
del pool