E5Network/E5SslCertificatesDialog.py

changeset 3020
542e97d4ecb3
parent 2990
583beaf0b4b8
child 3022
57179e4cdadd
--- a/E5Network/E5SslCertificatesDialog.py	Mon Oct 14 18:26:25 2013 +0200
+++ b/E5Network/E5SslCertificatesDialog.py	Mon Oct 14 19:30:36 2013 +0200
@@ -147,7 +147,8 @@
         Private slot to delete the selected server certificate.
         """
         itm = self.serversCertificatesTree.currentItem()
-        res = E5MessageBox.yesNo(self,
+        res = E5MessageBox.yesNo(
+            self,
             self.trUtf8("Delete Server Certificate"),
             self.trUtf8("""<p>Shall the server certificate really be"""
                         """ deleted?</p><p>{0}</p>"""
@@ -213,7 +214,8 @@
                     else:
                         commonStr = cert.subjectInfo(
                             QSslCertificate.CommonName)
-                    E5MessageBox.warning(self,
+                    E5MessageBox.warning(
+                        self,
                         self.trUtf8("Import Certificate"),
                         self.trUtf8(
                             """<p>The certificate <b>{0}</b> already exists."""
@@ -351,7 +353,8 @@
         Private slot to delete the selected CA certificate.
         """
         itm = self.caCertificatesTree.currentItem()
-        res = E5MessageBox.yesNo(self,
+        res = E5MessageBox.yesNo(
+            self,
             self.trUtf8("Delete CA Certificate"),
             self.trUtf8(
                 """<p>Shall the CA certificate really be deleted?</p>"""
@@ -399,7 +402,8 @@
                     else:
                         commonStr = cert.subjectInfo(
                             QSslCertificate.CommonName)
-                    E5MessageBox.warning(self,
+                    E5MessageBox.warning(
+                        self,
                         self.trUtf8("Import Certificate"),
                         self.trUtf8(
                             """<p>The certificate <b>{0}</b> already exists."""
@@ -453,7 +457,8 @@
                     if ex:
                         fname += ex
                 if QFileInfo(fname).exists():
-                    res = E5MessageBox.yesNo(self,
+                    res = E5MessageBox.yesNo(
+                        self,
                         self.trUtf8("Export Certificate"),
                         self.trUtf8("<p>The file <b>{0}</b> already exists."
                                     " Overwrite it?</p>").format(fname),
@@ -463,7 +468,8 @@
                 
                 f = QFile(fname)
                 if not f.open(QIODevice.WriteOnly):
-                    E5MessageBox.critical(self,
+                    E5MessageBox.critical(
+                        self,
                         self.trUtf8("Export Certificate"),
                         self.trUtf8(
                             """<p>The certificate could not be written"""
@@ -494,7 +500,8 @@
         if fname:
             f = QFile(fname)
             if not f.open(QIODevice.ReadOnly):
-                E5MessageBox.critical(self,
+                E5MessageBox.critical(
+                    self,
                     self.trUtf8("Export Certificate"),
                     self.trUtf8(
                         """<p>The certificate could not be read from file"""

eric ide

mercurial