Update utils.py

This commit is contained in:
M Clark
2015-12-17 11:26:45 +08:00
parent ae46228a38
commit 3dc3ebf262
+4 -1
View File
@@ -2,7 +2,10 @@
Misc utility functions related to crs formats and online services.
"""
import urllib2
try:
import urllib.request as urllib2
except ImportError:
import urllib2
import re
def build_crs_table(savepath):