Py3: Return path unescaped

[skip appveyor]
This commit is contained in:
Shadab Zafar 2016-06-04 18:31:26 +05:30
parent 6ffe8b376e
commit 2dec2db756

View File

@ -226,7 +226,7 @@ class TokValueFile(Token):
return generators.FileGenerator(s) return generators.FileGenerator(s)
def spec(self): def spec(self):
return "<'%s'" % strutils.bytes_to_escaped_str(self.path) return "<'%s'" % self.path
TokValue = pp.MatchFirst( TokValue = pp.MatchFirst(