From 1c249a216bccdc13dac5678b92ca4dc1ee4b5a1b Mon Sep 17 00:00:00 2001 From: Tomeu Vizoso Date: Thu, 26 Apr 2007 16:25:40 +0000 Subject: Fix for using with python 2.4. --- (limited to 'services') diff --git a/services/presence/server_plugin.py b/services/presence/server_plugin.py index 5330567..c332337 100644 --- a/services/presence/server_plugin.py +++ b/services/presence/server_plugin.py @@ -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] -- cgit v0.9.1