diff options
author | Thomas Kriechbaumer <Kriechi@users.noreply.github.com> | 2016-06-04 15:57:22 +0200 |
---|---|---|
committer | Thomas Kriechbaumer <Kriechi@users.noreply.github.com> | 2016-06-04 15:57:22 +0200 |
commit | 2355c29c0ef59019950da3a0410cd91bfeedb872 (patch) | |
tree | 58a569bc4e491708fa7bcc4ceea9306d942cbc36 /pathod/language/base.py | |
parent | 1c8223112900c26386560677134092cab5dbeea6 (diff) | |
parent | f45765a236f058a9d1eece7e5a5216e6fbcdecbe (diff) | |
download | mitmproxy-2355c29c0ef59019950da3a0410cd91bfeedb872.tar.gz mitmproxy-2355c29c0ef59019950da3a0410cd91bfeedb872.tar.bz2 mitmproxy-2355c29c0ef59019950da3a0410cd91bfeedb872.zip |
Merge pull request #1209 from dufferzafar/pathod-lang-base
Python 3 - pathod.language.base
Diffstat (limited to 'pathod/language/base.py')
-rw-r--r-- | pathod/language/base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pathod/language/base.py b/pathod/language/base.py index 11ee0623..1369a3c7 100644 --- a/pathod/language/base.py +++ b/pathod/language/base.py @@ -226,7 +226,7 @@ class TokValueFile(Token): return generators.FileGenerator(s) def spec(self): - return "<'%s'" % strutils.bytes_to_escaped_str(self.path) + return "<'%s'" % self.path TokValue = pp.MatchFirst( |