From a436ee3c6e009cbddbabd7a35052fda1295e1e1e Mon Sep 17 00:00:00 2001
From: pcain-usgs <pcain@usgs.gov>
Date: Mon, 26 Oct 2020 11:28:08 -0600
Subject: [PATCH] Update urllib2 to urllib

---
 bin/make_cal.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/bin/make_cal.py b/bin/make_cal.py
index 6a9bee3aa..d6ab58fde 100755
--- a/bin/make_cal.py
+++ b/bin/make_cal.py
@@ -11,7 +11,7 @@ import itertools
 import json
 import os
 import sys
-import urllib2
+import urllib.request
 
 
 ############################################################################
@@ -54,7 +54,7 @@ url = (
 
 try:
     print(f"Loading data from web service\n\t{url}", file=sys.stderr)
-    response = urllib2.urlopen(
+    response = urllib.request.urlopen(
         url,
         # allow environment certificate bundle override
         cafile=os.environ.get("SSL_CERT_FILE"),
@@ -125,7 +125,7 @@ calfile.append("")
 filename = FILENAME_FORMAT.format(OBSERVATORY=OBSERVATORY, YEAR=YEAR)
 print("Writing cal file to {}".format(filename), file=sys.stderr)
 with open(filename, "wb", -1) as f:
-    f.write(os.linesep.join(calfile))
+    f.write(os.linesep.join(calfile).encode())
 
 
 """
-- 
GitLab