From 54b0c9cb0a61233eaefd3c49d472b2dae82bcadd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20Borgstr=C3=B6m?= Date: Mon, 18 Oct 2010 19:03:30 +0200 Subject: [PATCH] Python 2.6 compatibility --- dedupestore/archiver.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dedupestore/archiver.py b/dedupestore/archiver.py index ef47038ae..274170016 100644 --- a/dedupestore/archiver.py +++ b/dedupestore/archiver.py @@ -17,7 +17,7 @@ CHUNK_SIZE = 55001 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):