From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 4B9DA13888F for ; Sat, 10 Oct 2015 01:26:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2973A21C008; Sat, 10 Oct 2015 01:26:18 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C7D7B21C008 for ; Sat, 10 Oct 2015 01:26:17 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8047F340634 for ; Sat, 10 Oct 2015 01:26:16 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2613DDDB for ; Sat, 10 Oct 2015 01:26:14 +0000 (UTC) From: "Anthony G. Basile" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anthony G. Basile" Message-ID: <1444440710.dfbc38ca93e107146c24121cade975789a7e984a.blueness@gentoo> Subject: [gentoo-commits] proj/grss:master commit in: grs/ X-VCS-Repository: proj/grss X-VCS-Files: grs/Interpret.py X-VCS-Directories: grs/ X-VCS-Committer: blueness X-VCS-Committer-Name: Anthony G. Basile X-VCS-Revision: dfbc38ca93e107146c24121cade975789a7e984a X-VCS-Branch: master Date: Sat, 10 Oct 2015 01:26:14 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 48b006ef-6025-43b4-9a98-3b40488400a8 X-Archives-Hash: 381812c72633c270bdebbbfd1736c40a commit: dfbc38ca93e107146c24121cade975789a7e984a Author: Anthony G. Basile gentoo org> AuthorDate: Sat Oct 10 01:24:17 2015 +0000 Commit: Anthony G. Basile gentoo org> CommitDate: Sat Oct 10 01:31:50 2015 +0000 URL: https://gitweb.gentoo.org/proj/grss.git/commit/?id=dfbc38ca grs/Interpret.py: skip blank lines with leading + grs/Interpret.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/grs/Interpret.py b/grs/Interpret.py index 15b6cfa..d326d9c 100644 --- a/grs/Interpret.py +++ b/grs/Interpret.py @@ -173,7 +173,7 @@ class Interpret(Daemon): # Do nothing for lines with initial # or blank lines. Create # a progress stamp only if we are not doing an update run. - if re.search(r'^(#).*$', _line) or len(_line.strip()) == 0: + if re.search(r'^(#).*$', _line) or _line.strip() == '' or _line.strip() == '+': if not self.update_run: stampit(progress) continue