Skip to content

wrong handling of multiple unicode literals when --six-unicode is used #26

Open
@daira

Description

@daira

If one has:

    foo(u'.........'
        u'.........')

it gets converted to:

    foo(six.u('........')
        six.u('........'))

that obviously does not work, better would be:

    foo(six.u('.........'
              '.........'))

(moved from mitsuhiko/python-modernize#9 opened by @ThomasWaldmann)

Metadata

Metadata

Assignees

Type

No type

Projects

No projects

Relationships

None yet

Development

No branches or pull requests

Issue actions