mirror of
https://github.com/frida/frida-python
synced 2026-06-08 14:16:17 +00:00
Use new except syntax
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user