From 7f3deabdee1f4cde94f009fbdf3e9d5d763a561d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Doktor?= Date: Wed, 2 Mar 2016 06:19:34 +0100 Subject: [PATCH] avocado.plugins.replay: Fix continuation line over-indented MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Lukáš Doktor --- avocado/plugins/replay.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/avocado/plugins/replay.py b/avocado/plugins/replay.py index a28c1976..a24a5631 100644 --- a/avocado/plugins/replay.py +++ b/avocado/plugins/replay.py @@ -68,8 +68,8 @@ class Replay(CLI): for item in status_list: if item not in status.user_facing_status: msg = 'Invalid --replay-test-status option. Valid ' \ - 'options are (more than one allowed): %s' % \ - ','.join([item for item in status.user_facing_status]) + 'options are (more than one allowed): %s' % \ + ','.join([item for item in status.user_facing_status]) raise argparse.ArgumentTypeError(msg) return status_list @@ -80,8 +80,8 @@ class Replay(CLI): for item in ignore_list: if item not in options: msg = 'Invalid --replay-ignore option. Valid ' \ - 'options are (more than one allowed): %s' % \ - ','.join(options) + 'options are (more than one allowed): %s' % \ + ','.join(options) raise argparse.ArgumentTypeError(msg) return ignore_list -- GitLab