Open
Description
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)