From eba408acf052b980166fa29e3b928486e23a7191 Mon Sep 17 00:00:00 2001 From: Guillaume Raffy Date: Fri, 6 Jun 2025 14:44:28 +0200 Subject: [PATCH] fixed bug in ticman nb: change made on 02/07/2024 --- home/bin/ticman | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home/bin/ticman b/home/bin/ticman index 154bbd6..73dea60 100755 --- a/home/bin/ticman +++ b/home/bin/ticman @@ -76,7 +76,7 @@ class TicketManager(): print(ticket_id) def push(self, ticket_id: TicketId): - _completed_process = run(['rsync', '-va', self.get_ticket_local_path(ticket_id), self.db_location.as_ssh_location()], check=True, capture_output=True) # noqa: F841 + _completed_process = run(['rsync', '-va', f'{self.get_ticket_local_path(ticket_id)}', f'{self.db_location.as_ssh_location()}'], check=True, capture_output=True) # noqa: F841 def checkin(self, ticket_id: TicketId): ticket_local_dir = self.get_ticket_local_path(ticket_id)