From f72adc03b10b77fcb98db278a2cc930864c58a20 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lubom=C3=ADr=20Sedl=C3=A1=C5=99?= Date: Mon, 17 Jun 2024 10:20:10 +0200 Subject: [PATCH] Fix formatting of long line MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Lubomír Sedlář --- pungi_utils/unified_isos.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pungi_utils/unified_isos.py b/pungi_utils/unified_isos.py index a3ae6dff..517921b7 100644 --- a/pungi_utils/unified_isos.py +++ b/pungi_utils/unified_isos.py @@ -152,7 +152,9 @@ class UnifiedISO(object): # provided `dir` are kept. if os.path.islink(old_path): real_path = os.readlink(old_path) - abspath = os.path.normpath(os.path.join(os.path.dirname(old_path), real_path)) + abspath = os.path.normpath( + os.path.join(os.path.dirname(old_path), real_path) + ) if not abspath.startswith(dir): old_path = real_path try: