The branch, twofactorauth has been updated via 20e27fe4a905d9e1b2b262aea42a017f95c3219d (commit) from 0ad799ebedfd89d9e6c327d94c23df77037743bc (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- ----------------------------------------------------------------------- Summary of changes: x2go/backends/printing/_file.py | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) The diff of changes is: diff --git a/x2go/backends/printing/_file.py b/x2go/backends/printing/_file.py index 7a8f9f8..449ebd6 100644 --- a/x2go/backends/printing/_file.py +++ b/x2go/backends/printing/_file.py @@ -109,9 +109,19 @@ class X2goClientPrintingFILE(inifiles.X2goIniFile): self._print_action = printactions.X2goPrintActionPRINTCMD(client_instance=self.client_instance, print_cmd=_print_command, logger=self.logger) @property - def print_action(self, reinit=False, return_name=False): + def print_action(self): """\ - Return the print action described by the »Bprinting« configuration file. + Return the print action described by the »printing« configuration file. + + This method has property status and wraps around the L{get_print_action} + method. + + """ + return self.get_print_action() + + def get_print_action(self, reinit=False, return_name=False): + """\ + Return the print action described by the »printing« configuration file. """ if reinit: hooks/post-receive -- python-x2go.git (Python X2Go Client API) This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "python-x2go.git" (Python X2Go Client API).