You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by ee...@apache.org on 2011/02/23 20:09:17 UTC

svn commit: r1073886 - /cassandra/trunk/drivers/py/cql/marshal.py

Author: eevans
Date: Wed Feb 23 19:09:17 2011
New Revision: 1073886

URL: http://svn.apache.org/viewvc?rev=1073886&view=rev
Log:
fixup typo in CQL Python driver

Modified:
    cassandra/trunk/drivers/py/cql/marshal.py

Modified: cassandra/trunk/drivers/py/cql/marshal.py
URL: http://svn.apache.org/viewvc/cassandra/trunk/drivers/py/cql/marshal.py?rev=1073886&r1=1073885&r2=1073886&view=diff
==============================================================================
--- cassandra/trunk/drivers/py/cql/marshal.py (original)
+++ cassandra/trunk/drivers/py/cql/marshal.py Wed Feb 23 19:09:17 2011
@@ -76,7 +76,7 @@ def unmarshal(bytestr, typestr):
     elif typestr == "org.apache.cassandra.db.marshal.LexicalUUIDType":
         return UUID(bytes=bytestr)
     elif typestr == "org.apache.cassandra.db.marshal.TimeUUIDType":
-        return UUID(bytes=bytetr)
+        return UUID(bytes=bytestr)
     else:
         return bytestr