diff options
author | Dusty Phillips <buchuki@gmail.com> | 2008-06-29 21:23:39 -0400 |
---|---|---|
committer | Dusty Phillips <buchuki@gmail.com> | 2008-06-29 21:23:39 -0400 |
commit | 801c4d723e72726851af72b1303cfb343469539e (patch) | |
tree | c43429326ef992b351493d15a43e046a1d81295c | |
parent | 8e029e99b8a5f48edf0fd003ac2ddd321d446fe8 (diff) |
fix depends bug in reporeadrelease_2008-jun-30release_2008-06-30
-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 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 |