Fix for using with python 2.4.

This commit is contained in:
Tomeu Vizoso 2007-04-26 18:25:40 +02:00
parent 0b2658d3a8
commit 1c249a216b

View File

@ -23,7 +23,7 @@ import gtk
from buddyiconcache import BuddyIconCache
import logging
import os
import hashlib
import md5
import psutils
from telepathy.client import ConnectionManager, ManagerRegistry, Connection, Channel
@ -343,9 +343,9 @@ class ServerPlugin(gobject.GObject):
if not icon_data:
icon_data = self._owner.props.icon
md5 = hashlib.md5()
md5.update(icon_data)
hash = md5.hexdigest()
m = md5.new()
m.update(icon_data)
hash = m.hexdigest()
self_handle = self._conn[CONN_INTERFACE].GetSelfHandle()
token = self._conn[CONN_INTERFACE_AVATARS].GetAvatarTokens([self_handle])[0]