forgot to remove debugging print

This commit is contained in:
Edwin Eefting 2021-10-04 00:59:50 +02:00
parent 0b4448798e
commit 81e7cd940c
2 changed files with 1 additions and 2 deletions

View File

@ -14,7 +14,7 @@ from .ThinnerRule import ThinnerRule
class ZfsAutobackup: class ZfsAutobackup:
"""main class""" """main class"""
VERSION = "3.1.1-beta1" VERSION = "3.1.1-rc1"
HEADER = "zfs-autobackup v{} - (c)2021 E.H.Eefting (edwin@datux.nl)".format(VERSION) HEADER = "zfs-autobackup v{} - (c)2021 E.H.Eefting (edwin@datux.nl)".format(VERSION)
def __init__(self, argv, print_arguments=True): def __init__(self, argv, print_arguments=True):

View File

@ -325,7 +325,6 @@ class ZfsDataset:
try: try:
test = self.timestamp test = self.timestamp
except ValueError as e: except ValueError as e:
self.error(str(e))
return False return False
return True return True