- Resolves: bug#419241 - Fixup the progress UI: - add function for total progress - add total progress percentagee current download line - add rate to current download line - use dead space when finished downloading - don't confuse download rate on regets.epel9
parent
850f513283
commit
544e2baa80
@ -0,0 +1,16 @@
|
||||
Index: urlgrabber/byterange.py
|
||||
===================================================================
|
||||
RCS file: /home/groups/urlgrabber/cvs-root/urlgrabber/urlgrabber/byterange.py,v
|
||||
retrieving revision 1.12
|
||||
diff -u -r1.12 byterange.py
|
||||
--- urlgrabber/byterange.py 20 Jul 2006 20:15:58 -0000 1.12
|
||||
+++ urlgrabber/byterange.py 13 Mar 2008 18:48:56 -0000
|
||||
@@ -272,6 +272,8 @@
|
||||
host, port = splitport(host)
|
||||
if port is None:
|
||||
port = ftplib.FTP_PORT
|
||||
+ else:
|
||||
+ port = int(port)
|
||||
|
||||
# username/password handling
|
||||
user, host = splituser(host)
|
Loading…
Reference in new issue