fixed bug in ticman

nb: change made on 02/07/2024
This commit is contained in:
Guillaume Raffy 2025-06-06 14:44:28 +02:00
parent a4a4b98e95
commit eba408acf0
1 changed files with 1 additions and 1 deletions

View File

@ -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)