r421 - in branches/rewrite: . src

Otavio Salvador partial-mirror-devel@lists.alioth.debian.org
Fri, 17 Dec 2004 20:57:18 -0700


Author: otavio
Date: Fri Dec 17 20:57:18 2004
New Revision: 421

Modified:
   branches/rewrite/   (props changed)
   branches/rewrite/src/Download.py
Log:
 r1369@nurf:  otavio | 2004-12-18T03:51:19.296304Z
 Split native packages and site packages. It made the code more easy to read.


Modified: branches/rewrite/src/Download.py
==============================================================================
--- branches/rewrite/src/Download.py	(original)
+++ branches/rewrite/src/Download.py	Fri Dec 17 20:57:18 2004
@@ -16,10 +16,11 @@
 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 # $Id$
 
-import pycurl
 import threading
-
 import Queue
+
+import pycurl
+
 import DisplayStatus
 
 class DownloadQueue(Queue.Queue):