From 6fa52100c306f4d488220282ec3ab4b7530ca00d Mon Sep 17 00:00:00 2001 From: hugovk Date: Sun, 2 Mar 2014 14:12:47 +0200 Subject: [PATCH] Should fix hashable user on 3.3, for #82 --- pylast.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pylast.py b/pylast.py index c34a49f..cfa7325 100644 --- a/pylast.py +++ b/pylast.py @@ -2855,6 +2855,7 @@ class User(_BaseObject): """A Last.fm user.""" name = None + __hash__ = _BaseObject.__hash__ def __init__(self, user_name, network): _BaseObject.__init__(self, network)