From 506a448a199e68a51ebd57816d8c38c685914981 Mon Sep 17 00:00:00 2001 From: osman Date: Sun, 24 Aug 2025 22:04:06 -0700 Subject: [PATCH] Add back-in unused imports These imports, although unused, are wrapped in a try/catch block for import check purposes. Will fix in a diff commit. --- bin/u2c.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bin/u2c.py b/bin/u2c.py index 5ba42e92..492f36ae 100755 --- a/bin/u2c.py +++ b/bin/u2c.py @@ -1648,7 +1648,8 @@ source file/folder selection uses rsync syntax, meaning that: if "https://" in ar.url.lower(): try: - pass + import ssl + import zipfile except: t = "ERROR: https is not available for some reason; please use http" print("\n\n %s\n\n" % (t,))