Send the correct action name when using local network

This commit is contained in:
ChrisTerBeke 2019-07-12 08:14:28 +02:00
parent 483e343b38
commit 6210135b92
3 changed files with 9 additions and 2 deletions

View file

@ -422,6 +422,7 @@ class CloudOutputDevice(NetworkedPrinterOutputDevice):
return [print_job for print_job in self._print_jobs if
print_job.assignedPrinter is not None and print_job.state != "queued"]
## Set the remote print job state.
def setJobState(self, print_job_uuid: str, state: str) -> None:
self._api.doPrintJobAction(self._cluster.cluster_id, print_job_uuid, state)