Skip to content

Commit ec00cb3

Browse files
committed
Merge branch 'beta' into dev
2 parents 3123ffe + 5befb2f commit ec00cb3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

pwnlib/tubes/process.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -435,11 +435,11 @@ def __on_enoexec(self, exception):
435435
# appropriate qemu binary to run it.
436436
qemu_path = qemu.user_path(arch=binary.arch)
437437

438-
if not qemu:
438+
if not qemu_path:
439439
raise exception
440440

441441
qemu_path = which(qemu_path)
442-
if qemu:
442+
if qemu_path:
443443
self._qemu = qemu_path
444444

445445
args = [qemu_path]

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
'python-dateutil',
5858
'packaging',
5959
'psutil>=3.3.0',
60-
'intervaltree',
60+
'intervaltree<3.0', # See Gallopsled/pwntools#1238
6161
'sortedcontainers<2.0', # See Gallopsled/pwntools#1154
6262
'unicorn']
6363

0 commit comments

Comments
 (0)