Commit c0302a44 authored by Bryton Lacquement's avatar Bryton Lacquement 🚪

division_support: fix the inserted filename

Quotes were added in the database.
parent c1ec610f
......@@ -49,7 +49,7 @@ class FixDivisionSupport(BaseFix):
dict(filename=filename, lineno=lineno, id=id_)
)
)
insert_support(filename, lineno, id_, status)
insert_support(filename[1:-1], lineno, id_, status)
if should_change:
add_future(node, 'division')
operator = Leaf(lib2to3.pgen2.token.DOUBLESLASH, "//")
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment