Changeset 9019
- Timestamp:
- 11/19/07 22:07:54 (9 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
branches/gajim_0.11.3-bugfixes/src/common/contacts.py
r8719 r9019 421 421 if jid2 > jid1: 422 422 return -1 423 # If all is the same, compare accounts, they can't be the same 424 account1 = data1['account'] 425 account2 = data2['account'] 426 if account1 > account2: 427 return 1 428 if account2 > account1: 429 return -1 423 430 return 0 424 431
