From 733431d5c24b958f1184db84c3d172ed6931609e Mon Sep 17 00:00:00 2001 From: Dan Buch Date: Tue, 31 May 2016 20:59:09 -0400 Subject: [PATCH] Wrap a long line --- cli-v1-to-v2 | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/cli-v1-to-v2 b/cli-v1-to-v2 index ce7ad3c..08435f7 100755 --- a/cli-v1-to-v2 +++ b/cli-v1-to-v2 @@ -187,7 +187,10 @@ def _context_args_index_repl(match): @_migrator def _migrate_envvar_string(source): - return re.sub('EnvVar:(?P\\s+)"(?P[^"]+)"', _envvar_string_repl, source) + return re.sub( + 'EnvVar:(?P\\s+)"(?P[^"]+)"', + _envvar_string_repl, source + ) def _envvar_string_repl(match):