diff -r 0a02c433f52d -r 5883ce99ee12 Helpviewer/SiteInfo/SiteInfoDialog.py --- a/Helpviewer/SiteInfo/SiteInfoDialog.py Fri Nov 01 15:48:48 2013 +0100 +++ b/Helpviewer/SiteInfo/SiteInfoDialog.py Sun Nov 03 15:58:22 2013 +0100 @@ -93,8 +93,8 @@ # populate the Security info and the Security tab if sslInfo and \ - ((qVersion() >= "5.0.0" and not sslInfo[0].isBlacklisted()) or \ - (qVersion() < "5.0.0" and sslInfo[0].isValid())): + ((qVersion() >= "5.0.0" and not sslInfo[0].isBlacklisted()) or + (qVersion() < "5.0.0" and sslInfo[0].isValid())): self.securityLabel.setStyleSheet(SiteInfoDialog.okStyle) self.securityLabel.setText('<b>Connection is encrypted.</b>') if SSL: @@ -274,7 +274,7 @@ self.trUtf8("Save Image"), self.trUtf8( """<p>Cannot write to file <b>{0}</b>.</p>""") - .format(filename)) + .format(filename)) return f.write(cacheData.readAll()) f.close()