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