Mercurial > libervia-backend
diff src/plugins/plugin_xep_0054.py @ 1075:7b4600ad73ad
misc: remove some pylints warnings
author | souliane <souliane@mailoo.org> |
---|---|
date | Sun, 15 Jun 2014 18:18:36 +0200 |
parents | 301b342c697a |
children | 5d89fecdf667 |
line wrap: on
line diff
--- a/src/plugins/plugin_xep_0054.py Sun Jun 15 16:09:30 2014 +0200 +++ b/src/plugins/plugin_xep_0054.py Sun Jun 15 18:18:36 2014 +0200 @@ -126,14 +126,14 @@ if name == "avatar": self.avatars_cache[jid.userhost()] = value - def get_cache(self, jid, name, profile): + def get_cache(self, entity_jid, name, profile): """return cached value for jid - @param jid: target contact + @param entity_jid: target contact @param name: name of the value ('nick' or 'avatar') @param profile: %(doc_profile)s @return: wanted value or None""" try: - data = self.host.memory.getEntityData(jid, [name], profile) + data = self.host.memory.getEntityData(entity_jid, [name], profile) except exceptions.UnknownEntityError: return None return data.get(name) @@ -149,8 +149,8 @@ image_hash = sha1(decoded).hexdigest() filename = self.avatar_path + '/' + image_hash if not os.path.exists(filename): - with open(filename, 'wb') as file: - file.write(decoded) + with open(filename, 'wb') as file_: + file_.write(decoded) log.debug(_("file saved to %s") % image_hash) else: log.debug(_("file [%s] already in cache") % image_hash)