From nobody Sat Apr 20 12:44:18 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) client-ip=209.132.183.28; envelope-from=patchew-devel-bounces@redhat.com; helo=mx1.redhat.com; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=patchew-devel-bounces@redhat.com Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by mx.zohomail.com with SMTPS id 1523006974337390.09425084680163; Fri, 6 Apr 2018 02:29:34 -0700 (PDT) Received: from smtp.corp.redhat.com (int-mx05.intmail.prod.int.phx2.redhat.com [10.5.11.15]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 60D4A85A02; Fri, 6 Apr 2018 09:29:33 +0000 (UTC) Received: from colo-mx.corp.redhat.com (colo-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.20]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 54EEB5D6A5; Fri, 6 Apr 2018 09:29:33 +0000 (UTC) Received: from lists01.pubmisc.prod.ext.phx2.redhat.com (lists01.pubmisc.prod.ext.phx2.redhat.com [10.5.19.33]) by colo-mx.corp.redhat.com (Postfix) with ESMTP id 4A46D1800CA0; Fri, 6 Apr 2018 09:29:33 +0000 (UTC) Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.rdu2.redhat.com [10.11.54.4]) by lists01.pubmisc.prod.ext.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id w369TWDK003098 for ; Fri, 6 Apr 2018 05:29:32 -0400 Received: by smtp.corp.redhat.com (Postfix) id F2E7F2024CA5; Fri, 6 Apr 2018 09:29:31 +0000 (UTC) Received: from donizetti.redhat.com (ovpn-117-39.ams2.redhat.com [10.36.117.39]) by smtp.corp.redhat.com (Postfix) with ESMTP id 5A3B52024CA4 for ; Fri, 6 Apr 2018 09:29:31 +0000 (UTC) From: Paolo Bonzini To: patchew-devel@redhat.com Date: Fri, 6 Apr 2018 11:29:30 +0200 Message-Id: <20180406092930.13947-1-pbonzini@redhat.com> X-Scanned-By: MIMEDefang 2.78 on 10.11.54.4 X-loop: patchew-devel@redhat.com Subject: [Patchew-devel] [PATCH] mbox: get version indicator from "PATCHv##" X-BeenThere: patchew-devel@redhat.com X-Mailman-Version: 2.1.12 Precedence: junk List-Id: Patchew development and discussion list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Sender: patchew-devel-bounces@redhat.com Errors-To: patchew-devel-bounces@redhat.com X-Scanned-By: MIMEDefang 2.79 on 10.5.11.15 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.26]); Fri, 06 Apr 2018 09:29:33 +0000 (UTC) X-ZohoMail: RSF_0 Z_629925259 SPT_0 Content-Type: text/plain; charset="utf-8" If "[PATCHv2]" is used without a space before the "v", Patchew misses the version number. For example http://next.patchew.org/QEMU/20180326153441.32= 641-1-f4bug@amsat.org/ mistakes the previous "v5" as "v1". Signed-off-by: Paolo Bonzini --- mbox.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mbox.py b/mbox.py index 3692cc6..fe108f3 100644 --- a/mbox.py +++ b/mbox.py @@ -140,6 +140,8 @@ class MboxMessage(object): def get_version(self): v =3D 1 for tag in self.get_prefixes(True): + if tag.startswith("PATCH"): + tag =3D tag[5:] if tag.startswith("V"): try: v =3D int(tag[1:]) --=20 2.16.2 _______________________________________________ Patchew-devel mailing list Patchew-devel@redhat.com https://www.redhat.com/mailman/listinfo/patchew-devel