diff -r 575a42bce11f -r 14e30e2520d7 utils.py --- a/utils.py Wed Sep 09 18:00:18 2009 +0200 +++ b/utils.py Wed Sep 09 18:38:25 2009 +0200 @@ -114,7 +114,7 @@ else: from uuid import uuid4 def make_uid(key): - return key + str(uuid4()) + return str(key) + str(uuid4()) def dump_class(cls, clsname): """create copy of a class by creating an empty class inheriting