# HG changeset patch # User Aurelien Campeas # Date 1252514305 -7200 # Node ID 14e30e2520d7f01f7f7c60e48478f9eba1d0cd95 # Parent 575a42bce11ffb153e2c6046783647c325215c91 oops, key can be non str 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