Helpviewer/DownloadDialog.py

changeset 12
1d8dd9706f46
parent 7
c679fb30c8f3
child 13
1af94a91f439
--- a/Helpviewer/DownloadDialog.py	Fri Jan 01 16:11:36 2010 +0000
+++ b/Helpviewer/DownloadDialog.py	Sat Jan 02 15:11:35 2010 +0000
@@ -15,7 +15,7 @@
 
 import Helpviewer.HelpWindow
 
-from Ui_DownloadDialog import Ui_DownloadDialog
+from .Ui_DownloadDialog import Ui_DownloadDialog
 
 class DownloadDialog(QWidget, Ui_DownloadDialog):
     """
@@ -157,7 +157,7 @@
         """
         path = ""
         if self.__reply.hasRawHeader("Content-Disposition"):
-            header = unicode(self.__reply.rawHeader("Content-Disposition"))
+            header = str(self.__reply.rawHeader("Content-Disposition"))
             if header:
                 pos = header.find("filename=")
                 if pos != -1:
@@ -367,10 +367,10 @@
         if size < 1024:
             unit = self.trUtf8("bytes")
         elif size < 1024 * 1024:
-            size /= 1024
+            size //= 1024
             unit = self.trUtf8("kB")
         else:
-            size /= 1024 * 1024
+            size //= 1024 * 1024
             unit = self.trUtf8("MB")
         return "{0} {1}".format(size, unit)
     

eric ide

mercurial