Commit 9212848b authored by delanoe's avatar delanoe

modifié : RIS.py

[FIX] BUG ISI Parser (which depends on RIS parser)
      Adding a space in the regex breaks ISI parser
      Then the question is: is the space really usefull for RIS parser ?
parent 33c6047e
......@@ -55,7 +55,7 @@ class RISParser(Parser):
# print("(nonemptyline)")
# test if key line (otherwise: continuation line)
if match(r'[A-Z][A-Z0-9]\s', line):
if match(r'[A-Z][A-Z0-9]', line):
parameter_key = line[:2]
# print("(matchparamline:"+parameter_key+")")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment