summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDusty Phillips <buchuki@gmail.com>2008-06-30 03:23:39 +0200
committerDusty Phillips <buchuki@gmail.com>2008-06-30 03:23:39 +0200
commit801c4d723e72726851af72b1303cfb343469539e (patch)
treec43429326ef992b351493d15a43e046a1d81295c
parent8e029e99b8a5f48edf0fd003ac2ddd321d446fe8 (diff)
downloadarchweb-801c4d723e72726851af72b1303cfb343469539e.tar.gz
archweb-801c4d723e72726851af72b1303cfb343469539e.tar.xz
fix depends bug in reporead
-rwxr-xr-xscripts/reporead.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/reporead.py b/scripts/reporead.py
index 08bf038..412962a 100755
--- a/scripts/reporead.py
+++ b/scripts/reporead.py
@@ -187,7 +187,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