From 799f77d822314d958c3ac4d81d5a7431116d8902 Mon Sep 17 00:00:00 2001 From: Charlie Date: Wed, 02 Dec 2009 14:15:37 +0000 Subject: Corrected store bug where download time was added to the tutorial archive --- (limited to 'tutorius/store.py') diff --git a/tutorius/store.py b/tutorius/store.py index 565295d..69e74af 100644 --- a/tutorius/store.py +++ b/tutorius/store.py @@ -220,7 +220,7 @@ class StoreProxy(object): installnode = xml.getElementsByTagName("install")[0] installurl = installnode.firstChild.nodeValue - fp = urllib.urlopen(installurl) + fp = urllib2.urlopen(installurl) return fp -- cgit v0.9.1