parent
a4a4b98e95
commit
eba408acf0
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue