summaryrefslogtreecommitdiff
path: root/MAT/misc.py
diff options
context:
space:
mode:
Diffstat (limited to 'MAT/misc.py')
-rw-r--r--MAT/misc.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/MAT/misc.py b/MAT/misc.py
index 4c104a8..e016d18 100644
--- a/MAT/misc.py
+++ b/MAT/misc.py
@@ -12,8 +12,8 @@ class TorrentStripper(parser.GenericParser):
12 Represent a torrent file with the help 12 Represent a torrent file with the help
13 of the bencode lib from Petru Paler 13 of the bencode lib from Petru Paler
14 ''' 14 '''
15 def __init__(self, filename, parser, mime, backup, **kwargs): 15 def __init__(self, filename, parser, mime, backup, is_writable, **kwargs):
16 super(TorrentStripper, self).__init__(filename, parser, mime, backup) 16 super(TorrentStripper, self).__init__(filename, parser, mime, backup, is_writable, **kwargs)
17 self.fields = ['comment', 'creation date', 'created by'] 17 self.fields = ['comment', 'creation date', 'created by']
18 18
19 def is_clean(self): 19 def is_clean(self):