aboutsummaryrefslogtreecommitdiffstats
path: root/pathod
diff options
context:
space:
mode:
authorMaximilian Hils <git@maximilianhils.com>2016-10-22 19:10:44 -0700
committerGitHub <noreply@github.com>2016-10-22 19:10:44 -0700
commitc09cedd0f850a863665c67ecc0a6166488a0f8cb (patch)
tree3f0ab76804d6d59fb6c79ce65a2cc6c95c806d0f /pathod
parent37a05e27526d22a23f7579dd1dbb0a04ea4eedcc (diff)
parenta1a792aeac20eab1fd2f2e1a91d34ba990fc111b (diff)
downloadmitmproxy-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.py2
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))
)