From b809db2b2f87c67812b18ac1f1b75910c4168ea4 Mon Sep 17 00:00:00 2001 From: Ciro Scognamiglio Date: Wed, 26 Feb 2014 19:31:45 +0100 Subject: [PATCH 1/1] rest parameters can be sent also with a get --- rest/__init__.py | 1 - 1 file changed, 1 deletion(-) diff --git a/rest/__init__.py b/rest/__init__.py index 075f9371..636f1e54 100644 --- a/rest/__init__.py +++ b/rest/__init__.py @@ -13,7 +13,6 @@ from string import join import decimal import datetime import json -import urlparse # handles serialization of datetime in json DateEncoder = lambda obj: obj.strftime("%B %d, %Y %H:%M:%S") if isinstance(obj, datetime.datetime) else None -- 2.45.2