Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 9d75927

Browse files
authored
Merge pull request #2 from stevenschmatz/patch-1
Binary does not "exists" -> exist
2 parents c79033b + 8ca1a65 commit 9d75927

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pyjfuzz/core/pjf_executor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ def spawn(self, cmd, stdin_content="", stdin=False, shell=False, timeout=2):
6666
except KeyboardInterrupt:
6767
return
6868
except OSError:
69-
raise PJFProcessExecutionError("Binary <%s> does not exists" % cmd[0])
69+
raise PJFProcessExecutionError("Binary <%s> does not exist" % cmd[0])
7070
except Exception as e:
7171
raise PJFBaseException(e.message)
7272

0 commit comments

Comments
 (0)