From 63ff2659fc8fda1c141d7b7764683dba11bbf467 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20Genov=C3=A9s?= Date: Wed, 24 Jul 2019 21:38:08 +0200 Subject: [PATCH] There is no necessity to strip + signs from URIS Closes #171 --- uberwriter/main_window.py | 1 - 1 file changed, 1 deletion(-) diff --git a/uberwriter/main_window.py b/uberwriter/main_window.py index 7a333ad..26a6f2d 100644 --- a/uberwriter/main_window.py +++ b/uberwriter/main_window.py @@ -442,7 +442,6 @@ class MainWindow(StyledWindow): if filename: if filename.startswith('file://'): filename = filename[7:] - filename = urllib.parse.unquote_plus(filename) self.text_view.clear() try: if os.path.exists(filename):