From 19369f1acdb94fbafe7a91e90e96d0e725b6fa40 Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Sat, 15 Jun 2024 16:25:35 +0300 Subject: [PATCH] Refactor(bin/decode-URLs.py): Python3-only --- bin/decode-URLs.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/bin/decode-URLs.py b/bin/decode-URLs.py index ef04664..6b98bb3 100755 --- a/bin/decode-URLs.py +++ b/bin/decode-URLs.py @@ -1,9 +1,6 @@ #! /usr/bin/env python3 -try: - from urllib.parse import unquote -except ImportError: - from urllib import unquote +from urllib.parse import unquote import sys while True: -- 2.39.2