diff options
| author | Maximilian Hils <git@maximilianhils.com> | 2016-10-22 19:10:44 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-10-22 19:10:44 -0700 |
| commit | c09cedd0f850a863665c67ecc0a6166488a0f8cb (patch) | |
| tree | 3f0ab76804d6d59fb6c79ce65a2cc6c95c806d0f /pathod | |
| parent | 37a05e27526d22a23f7579dd1dbb0a04ea4eedcc (diff) | |
| parent | a1a792aeac20eab1fd2f2e1a91d34ba990fc111b (diff) | |
| download | mitmproxy-c09cedd0f850a863665c67ecc0a6166488a0f8cb.tar.gz mitmproxy-c09cedd0f850a863665c67ecc0a6166488a0f8cb.tar.bz2 mitmproxy-c09cedd0f850a863665c67ecc0a6166488a0f8cb.zip | |
Merge pull request #1655 from mhils/fix-encoding
Encoding Fixes
Diffstat (limited to 'pathod')
| -rw-r--r-- | pathod/language/generators.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pathod/language/generators.py b/pathod/language/generators.py index 4e19ecd9..d716804d 100644 --- a/pathod/language/generators.py +++ b/pathod/language/generators.py @@ -14,7 +14,7 @@ DATATYPES = dict( punctuation=string.punctuation.encode(), whitespace=string.whitespace.encode(), ascii=string.printable.encode(), - bytes=bytes(bytearray(range(256))) + bytes=bytes(range(256)) ) |
