Skip to content
Snippets Groups Projects
Verified Commit 60bd55ee authored by Gaëtan Blond's avatar Gaëtan Blond
Browse files

Fixed wrong url type

parent 2c4a65f2
No related branches found
No related tags found
1 merge request!1Refactor and clean old code
......@@ -40,7 +40,7 @@ class AtomRSSFetcher(ProjectFetcher):
for entry in root.findall(_ATOM_ENTRY):
tag_id = entry.findtext(_ATOM_TAG_ID)
version = entry.findtext(_ATOM_TAG_VERSION)
url = entry.find(_ATOM_TAG_URL)
url = entry.find(_ATOM_TAG_URL).get("href")
entries.append(Entry(self.feed_id, tag_id, self.name, version, url))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment