summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTill Maas <opensource@till.name>2013-12-20 18:38:48 +0100
committerTill Maas <opensource@till.name>2013-12-20 18:38:48 +0100
commite4b7d091a22885d13ec25fd94f93bc230766058a (patch)
tree1f5abeab6c5870c713ff5f945c82c88332530691
parent72213dd45d360c0e04079921cf1f6dc2714ddaa2 (diff)
downloadcnucnu-e4b7d091a22885d13ec25fd94f93bc230766058a.tar.gz
cnucnu-e4b7d091a22885d13ec25fd94f93bc230766058a.tar.xz
cnucnu-e4b7d091a22885d13ec25fd94f93bc230766058a.zip
Package_list: Fix html caching
-rwxr-xr-xcnucnu/package_list.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cnucnu/package_list.py b/cnucnu/package_list.py
index ca68c04..c9c3f5c 100755
--- a/cnucnu/package_list.py
+++ b/cnucnu/package_list.py
@@ -298,7 +298,7 @@ class Package(object):
raise cc_errors.UpstreamVersionRetrievalError("%(name)s: IO error while retrieving upstream URL. - %(url)s - %(regex)s" % self)
except pycurl.error, e:
raise cc_errors.UpstreamVersionRetrievalError("%(name)s: Pycurl while retrieving upstream URL. - %(url)s - %(regex)s" % self + " " + str(e))
- self.html = html
+ self._html = html
return self._html
html = property(get_html, set_html)