Wrap a long line

This commit is contained in:
Dan Buch 2016-05-31 20:59:09 -04:00
parent cbd0e8231b
commit 733431d5c2
No known key found for this signature in database
GPG Key ID: FAEF12936DD3E3EC

View File

@ -187,7 +187,10 @@ def _context_args_index_repl(match):
@_migrator
def _migrate_envvar_string(source):
return re.sub('EnvVar:(?P<ws>\\s+)"(?P<string>[^"]+)"', _envvar_string_repl, source)
return re.sub(
'EnvVar:(?P<ws>\\s+)"(?P<string>[^"]+)"',
_envvar_string_repl, source
)
def _envvar_string_repl(match):