diff options
author | Till Maas <opensource@till.name> | 2013-12-20 18:38:48 +0100 |
---|---|---|
committer | Till Maas <opensource@till.name> | 2013-12-20 18:38:48 +0100 |
commit | e4b7d091a22885d13ec25fd94f93bc230766058a (patch) | |
tree | 1f5abeab6c5870c713ff5f945c82c88332530691 /cnucnu | |
parent | 72213dd45d360c0e04079921cf1f6dc2714ddaa2 (diff) | |
download | cnucnu-e4b7d091a22885d13ec25fd94f93bc230766058a.tar.gz cnucnu-e4b7d091a22885d13ec25fd94f93bc230766058a.tar.xz cnucnu-e4b7d091a22885d13ec25fd94f93bc230766058a.zip |
Package_list: Fix html caching
Diffstat (limited to 'cnucnu')
-rwxr-xr-x | cnucnu/package_list.py | 2 |
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) |