Skip to content

Commit

Permalink
[ci] Fix error with "name" vs "global name" bar
Browse files Browse the repository at this point in the history
  • Loading branch information
heapcrash committed Jun 22, 2020
1 parent 0f2f91a commit 6c0017e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pwnlib/tubes/ssh.py
Original file line number Diff line number Diff line change
Expand Up @@ -828,7 +828,7 @@ def process(self, argv=None, executable=None, tty=True, cwd=None, env=None, time
>>> print(s.process('false', preexec_fn=uses_globals).recvall().strip().decode()) # doctest: +ELLIPSIS
Traceback (most recent call last):
...
NameError: name 'bar' is not defined
NameError: ... name 'bar' is not defined
>>> s.process('echo hello', shell=True).recvall()
b'hello\n'
Expand Down

0 comments on commit 6c0017e

Please sign in to comment.