Skip to content

Commit

Permalink
Fix encoders.null typo (Gallopsled#645)
Browse files Browse the repository at this point in the history
  • Loading branch information
zachriggle authored and Mathias Svensson committed Aug 18, 2016
1 parent 2947fb1 commit 2d08e7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pwnlib/encoders/encoder.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ def null(raw_bytes, *a, **kw):
Accepts the same arguments as :func:`encode`.
"""
return encode(raw_bytes, expr=null, *a, **kw)
return encode(raw_bytes, expr=re_null, *a, **kw)

@LocalContext
def line(raw_bytes, *a, **kw):
Expand Down

0 comments on commit 2d08e7c

Please sign in to comment.