mirror of
https://github.com/borgbackup/borg.git
synced 2025-01-03 05:35:58 +00:00
Python 2.6 compatibility
This commit is contained in:
parent
b99ea117e1
commit
54b0c9cb0a
1 changed files with 1 additions and 1 deletions
|
@ -17,7 +17,7 @@
|
|||
class LevelFilter(logging.Filter):
|
||||
|
||||
def __init__(self, *args, **kwargs):
|
||||
super(LevelFilter, self).__init__(args, **kwargs)
|
||||
logging.Filter.__init__(self, *args, **kwargs)
|
||||
self.count = {}
|
||||
|
||||
def filter(self, record):
|
||||
|
|
Loading…
Reference in a new issue