summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorDusty Phillips <buchuki@gmail.com>2009-07-13 20:44:45 +0200
committerDusty Phillips <buchuki@gmail.com>2009-07-13 20:44:45 +0200
commit6ba0e5a6351a29f99e726fb637c753e15926fb7a (patch)
tree910c67763e1a8817e81c259bfd0b76f46e4d76f3 /scripts
parent95f999b2646dc73a3983f879bc75332f822380ca (diff)
downloadarchweb-6ba0e5a6351a29f99e726fb637c753e15926fb7a.tar.gz
archweb-6ba0e5a6351a29f99e726fb637c753e15926fb7a.tar.xz
Fixes #12273. Patch supplied by Henning Garus.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/reporead.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/reporead.py b/scripts/reporead.py
index 047463b..7332a91 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