From 3fd0921e0f981bb91b202127e0690f67436a533e Mon Sep 17 00:00:00 2001 From: Sunil Mohan Adapa Date: Tue, 2 Jun 2020 22:34:32 -0700 Subject: [PATCH] backups: Remove an unnecessary print() statement Signed-off-by: Sunil Mohan Adapa Reviewed-by: James Valleroy --- plinth/modules/backups/repository.py | 1 - 1 file changed, 1 deletion(-) diff --git a/plinth/modules/backups/repository.py b/plinth/modules/backups/repository.py index 01bd6b712..94aafe0e1 100644 --- a/plinth/modules/backups/repository.py +++ b/plinth/modules/backups/repository.py @@ -130,7 +130,6 @@ class BaseBorgRepository(abc.ABC): """Return Borg information about a repository.""" output = self.run(['info', '--path', self.borg_path]) output = json.loads(output) - print(output, self._get_encryption_data()) if output['encryption']['mode'] == 'none' and \ self._get_encryption_data(): raise errors.BorgUnencryptedRepository(