From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
From: Jonathan Carter <jcc@debian.org>
Date: May, 14 2026 09:26:54 +0200
Subject: [PATCH] Fix install-time byte-compile error 
Bug-Debian: https://bugs.debian.org/1131992
Origin: upstream, https://gitlab.gnome.org/jpu/cambalache/-/commit/3a9d1f5d770c4d2e0c5157b058a1271483c7dc8a
Bug: https://gitlab.gnome.org/jpu/cambalache/-/work_items/319 

--- cambalache-1.0.1.orig/cambalache/app/cmb_window.py
+++ cambalache-1.0.1/cambalache/app/cmb_window.py
@@ -726,7 +726,8 @@ class CmbWindow(Adw.ApplicationWindow):
         def on_response(dialog, response):
             if response == 1:
                 clip = self.get_clipboard()
-                clip.set(f"{message}\n{secondary_text}\n{'\n'.join(details or [])}")
+                details_string = '\n'.join(details or [])
+                clip.set(f"{message}\n{secondary_text}\n{details_string}")
             else:
                 dialog.destroy()
 
