From c3dcd34f5a2106cef08b57ccb57d20d00528a231 Mon Sep 17 00:00:00 2001 From: Isis Lovecruft Date: Mon, 27 May 2013 07:25:27 +0000 Subject: [PATCH] This log statement didn't need 2LOC. --- src/_parsers.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/_parsers.py b/src/_parsers.py index db7a77b..1ae5046 100644 --- a/src/_parsers.py +++ b/src/_parsers.py @@ -562,8 +562,7 @@ def _sanitise(*args): else: groups[last] = str() while len(filo) > 1 and not is_flag(filo[len(filo)-1]): - log.debug("Got value: %s" - % filo[len(filo)-1]) + log.debug("Got value: %s" % filo[len(filo)-1]) groups[last] += (filo.pop() + " ") else: if len(filo) == 1 and not is_flag(filo[0]):