diff -r 394377638256 -r 218bc66da8c0 eric7/EricNetwork/EricSslInfoWidget.py --- a/eric7/EricNetwork/EricSslInfoWidget.py Sat Sep 25 18:12:48 2021 +0200 +++ b/eric7/EricNetwork/EricSslInfoWidget.py Sat Sep 25 18:14:22 2021 +0200 @@ -177,13 +177,13 @@ label.setText(self.tr( "It is encrypted using {0} at {1} bits, " "with {2} for message authentication and " - "{3} as key exchange mechanism.\n\n").format( + "{3} as key exchange mechanism.\n\n" + ).format( cipher.encryptionMethod(), cipher.usedBits(), cipher.authenticationMethod(), cipher.keyExchangeMethod() - ) - ) + )) layout.addWidget(label, rows, 1) rows += 1