summaryrefslogtreecommitdiff
path: root/paste/debug
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2015-04-22 00:38:47 +0200
committerVictor Stinner <victor.stinner@gmail.com>2015-04-22 00:38:47 +0200
commitdc4f02614e463c37c8df1bbc93de6b61b2cd1649 (patch)
treee2f442edefbfef85631ea9ecbf1ff38cca55e257 /paste/debug
parent33816da51d3c71ceaf7646a83fb27c57e0ac5656 (diff)
downloadpaste-dc4f02614e463c37c8df1bbc93de6b61b2cd1649.tar.gz
Remove UserDict24
Diffstat (limited to 'paste/debug')
-rw-r--r--paste/debug/fsdiff.py8
1 files changed, 2 insertions, 6 deletions
diff --git a/paste/debug/fsdiff.py b/paste/debug/fsdiff.py
index b91eb49..136b869 100644
--- a/paste/debug/fsdiff.py
+++ b/paste/debug/fsdiff.py
@@ -17,12 +17,8 @@ try:
# Python 3
import collections.UserDict as IterableUserDict
except ImportError:
- try:
- # Python 2.5-2.7
- from UserDict import IterableUserDict
- except ImportError:
- # Python <= 2.4
- from paste.util.UserDict24 import IterableUserDict
+ # Python 2.5-2.7
+ from UserDict import IterableUserDict
import operator
import re