From 8ef324f78f46fe624e353464d1f3bc2328cc273f Mon Sep 17 00:00:00 2001 From: Ryan Petrello Date: Fri, 2 Mar 2012 12:45:41 -0500 Subject: [PATCH] Removing an unnecessary import. --- pecan/tests/test_jsonify.py | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/pecan/tests/test_jsonify.py b/pecan/tests/test_jsonify.py index 540a27c..00f8e4b 100644 --- a/pecan/tests/test_jsonify.py +++ b/pecan/tests/test_jsonify.py @@ -15,13 +15,7 @@ from pecan.jsonify import jsonify, encode, ResultProxy, RowProxy from pecan import Pecan, expose, request from webtest import TestApp -# depending on the version WebOb might have 2 types of dicts -try: - # WebOb <= 1.1.1 - from webob.multidict import MultiDict, UnicodeMultiDict -except ImportError: # pragma no cover - # WebOb >= 1.2 - from webob.multidict import MultiDict +from webob.multidict import MultiDict def make_person(): class Person(object):