summaryrefslogtreecommitdiff
path: root/lib/parser.py
diff options
context:
space:
mode:
authorjvoisin2011-07-26 15:14:48 +0200
committerjvoisin2011-07-26 15:14:48 +0200
commit962e9aec5ffcdaae39e06f277dd47d1943205c37 (patch)
tree85d57c245f010579dc3eb9199fe3ed6e379e96d8 /lib/parser.py
parent7c9edd6514854f707b87e150a1ffa327ebd8dcac (diff)
Bugfixes (especially for pdf), and more pylint conformity
Diffstat (limited to 'lib/parser.py')
-rw-r--r--lib/parser.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/parser.py b/lib/parser.py
index 28e0849..ae647fe 100644
--- a/lib/parser.py
+++ b/lib/parser.py
@@ -12,7 +12,7 @@ import mat
12NOMETA = ('.bmp', 'html', '.py', '.rdf', '.txt', '.xml') 12NOMETA = ('.bmp', 'html', '.py', '.rdf', '.txt', '.xml')
13 13
14 14
15class Generic_parser(object): 15class GenericParser(object):
16 def __init__(self, realname, filename, parser, editor, backup, 16 def __init__(self, realname, filename, parser, editor, backup,
17 add2archive): 17 add2archive):
18 basename, ext = os.path.splitext(filename) 18 basename, ext = os.path.splitext(filename)
@@ -78,7 +78,7 @@ class Generic_parser(object):
78 return True if the field is compromizing 78 return True if the field is compromizing
79 abstract method 79 abstract method
80 ''' 80 '''
81 raise NotImplementedError() 81 raise NotImplementedError
82 82
83 def do_backup(self): 83 def do_backup(self):
84 ''' 84 '''