Changeset 10526
- Timestamp:
- 10/12/08 00:37:11 (6 weeks ago)
- Files:
-
- 1 modified
-
trunk/src/gajim.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gajim.py
r10520 r10526 1819 1819 '%s\nIt may have been tampered with.') % jid 1820 1820 1821 if session.control:1822 session.control.print_conversation_line(details,1823 'status', '', tim)1821 ctrl = session.control 1822 if ctrl: 1823 ctrl.print_conversation_line(details, 'status', '', tim) 1824 1824 else: 1825 1825 dialogs.WarningDialog(_('Unable to decrypt message'), … … 1831 1831 1832 1832 # restart the session 1833 session.negotiate_e2e(False) 1833 if ctrl: 1834 ctrl.begin_e2e_negotiation() 1834 1835 1835 1836 def handle_event_privacy_lists_received(self, account, data):
