We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3123ffe + 5befb2f commit ec00cb3Copy full SHA for ec00cb3
pwnlib/tubes/process.py
@@ -435,11 +435,11 @@ def __on_enoexec(self, exception):
435
# appropriate qemu binary to run it.
436
qemu_path = qemu.user_path(arch=binary.arch)
437
438
- if not qemu:
+ if not qemu_path:
439
raise exception
440
441
qemu_path = which(qemu_path)
442
- if qemu:
+ if qemu_path:
443
self._qemu = qemu_path
444
445
args = [qemu_path]
setup.py
@@ -57,7 +57,7 @@
57
'python-dateutil',
58
'packaging',
59
'psutil>=3.3.0',
60
- 'intervaltree',
+ 'intervaltree<3.0', # See Gallopsled/pwntools#1238
61
'sortedcontainers<2.0', # See Gallopsled/pwntools#1154
62
'unicorn']
63
0 commit comments