Skip to content

Commit

Permalink
Merge branch 'djay/fix_None_in_filter' into djay/5.0.x_integration
Browse files Browse the repository at this point in the history
  • Loading branch information
djay committed Jul 9, 2019
2 parents 7bbb039 + 36dde6e commit 0851f0b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/collective/collectionfilter/tests/test_filteritems.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
# -*- coding: utf-8 -*-
"""Setup tests for this package."""
import unittest
from urlparse import urlparse, parse_qs
try:
from urllib.parse import urlparse, parse_qs
except:
from urlparse import urlparse, parse_qs

from plone.app.contenttypes.interfaces import ICollection

Expand Down

0 comments on commit 0851f0b

Please sign in to comment.