Commit 6ab323b4 authored by Dan Pascu's avatar Dan Pascu

Removed unnecessary character escaping

parent 82921893
...@@ -46,10 +46,10 @@ class ZRTPWidget(base_class, ui_class): ...@@ -46,10 +46,10 @@ class ZRTPWidget(base_class, ui_class):
self.__dict__['peer_verified'] = verified self.__dict__['peer_verified'] = verified
if verified: if verified:
self.validate_button.setText(u'Invalidate') self.validate_button.setText(u'Invalidate')
self.status_value.setText(u'<span style=\"color: #55ff00;\">Verified</span>') self.status_value.setText(u'<span style="color: #55ff00;">Verified</span>')
else: else:
self.validate_button.setText(u'Validate') self.validate_button.setText(u'Validate')
self.status_value.setText(u'<span style=\"color: #ff5500;\">Not verified</span>') self.status_value.setText(u'<span style="color: #ff5500;">Not verified</span>')
self.validate_button.setChecked(verified) self.validate_button.setChecked(verified)
peer_verified = property(_get_peer_verified, _set_peer_verified) peer_verified = property(_get_peer_verified, _set_peer_verified)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment