Commit 78b18da1 authored by Marco Mariani's avatar Marco Mariani

--only_sr also accepts plain text URIs

parent 5b3fa850
Changes Changes
======= =======
(unreleased)
------------
* --only_sr also accepts plain text URIs. [Marco Mariani]
0.33 (2012-10-15) 0.33 (2012-10-15)
----------------- -----------------
......
...@@ -563,7 +563,8 @@ class Slapgrid(object): ...@@ -563,7 +563,8 @@ class Slapgrid(object):
completed_tag = os.path.join(software_path, '.completed') completed_tag = os.path.join(software_path, '.completed')
if self.develop or (not os.path.exists(completed_tag) and \ if self.develop or (not os.path.exists(completed_tag) and \
len(self.software_release_filter_list) == 0) or \ len(self.software_release_filter_list) == 0) or \
url_hash in self.software_release_filter_list: url_hash in self.software_release_filter_list or \
url_hash in (md5(uri).hexdigest() for uri in self.software_release_filter_list):
try: try:
software_release.building() software_release.building()
except NotFoundError: except NotFoundError:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment