backups: Remove an unnecessary print() statement

Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org>
Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
This commit is contained in:
Sunil Mohan Adapa 2020-06-02 22:34:32 -07:00 committed by James Valleroy
parent e59f9ac3fc
commit 3fd0921e0f
No known key found for this signature in database
GPG Key ID: 77C0C75E7B650808

View File

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