From: Barış Metin Date: Mon, 3 Jan 2011 14:55:36 +0000 (+0100) Subject: fix regexp for tagname X-Git-Tag: 5.0-rc18~136^2~1 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=2d5b37570d499af2f1d5574fbc5dd89eebe5594f;p=build.git fix regexp for tagname --- diff --git a/module-tools.py b/module-tools.py index 09c124ab..10ce4284 100755 --- a/module-tools.py +++ b/module-tools.py @@ -446,7 +446,7 @@ class Module: # for parsing module spec name:branch matcher_branch_spec=re.compile("\A(?P[\w\.-]+):(?P[\w\.-]+)\Z") # special form for tagged module - for Build - matcher_tag_spec=re.compile("\A(?P[\w-]+)@(?P[\w\.-]+)\Z") + matcher_tag_spec=re.compile("\A(?P[\w\.-]+)@(?P[\w\.-]+)\Z") # parsing specfiles matcher_rpm_define=re.compile("%(define|global)\s+(\S+)\s+(\S*)\s*")