diff options
author | Dusty Phillips <buchuki@gmail.com> | 2009-07-13 14:44:45 -0400 |
---|---|---|
committer | Dusty Phillips <buchuki@gmail.com> | 2009-07-13 14:44:45 -0400 |
commit | 6ba0e5a6351a29f99e726fb637c753e15926fb7a (patch) | |
tree | 910c67763e1a8817e81c259bfd0b76f46e4d76f3 | |
parent | 95f999b2646dc73a3983f879bc75332f822380ca (diff) |
Fixes #12273. Patch supplied by Henning Garus.
-rwxr-xr-x | scripts/reporead.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/reporead.py b/scripts/reporead.py index 047463bd..7332a918 100755 --- a/scripts/reporead.py +++ b/scripts/reporead.py @@ -213,7 +213,7 @@ def db_update(archname, pkgs): for y in p.depends: # make sure we aren't adding self depends.. # yes *sigh* i have seen them in pkgbuilds - dpname,dpvcmp = re.match(r"([a-z0-9._-]+)(.*)", y).groups() + dpname,dpvcmp = re.match(r"([a-z0-9._+-]+)(.*)", y).groups() if dpname == p.name: logger.warning('Package %s has a depend on itself' % p.name) continue |