Code

fix up some pre-Python2.6 compatibility issues in the *dbm interface
[roundup.git] / roundup / anypy / urllib_.py
2 try:
3     from urllib.parse import quote, urlparse
4 except:
5     from urllib import quote
6     from urlparse import urlparse