MongoDB: fixed object_id function (hex values)

This commit is contained in:
Alan Etkin
2013-11-16 17:16:59 -03:00
parent a91570768e
commit bdc214f45b
+2 -1
View File
@@ -5555,7 +5555,8 @@ class MongoDBAdapter(NoSQLAdapter):
if arg == 0:
hexvalue = "".zfill(24)
else:
hexvalue = hex(arg)[2:].replace("L", "")
hexvalue = hex(arg
).split("x")[-1].replace("L", "").zfill(24)
return self.ObjectId(hexvalue)
def parse_reference(self, value, field_type):