Browse Source

Added semicolon as a default author separator

pull/88/head
Louis 9 years ago
parent
commit
f093f02d13
  1. 2
      patacrep/authors.py

2
patacrep/authors.py

@ -28,7 +28,7 @@ def compile_authwords(authwords):
]
authwords['sep'] = [
re.compile(r"^(.*)%s +(.*)$" % word, re.LOCALE)
for word in ([" %s" % word for word in authwords['sep']] + [','])
for word in ([" %s" % word for word in authwords['sep']] + [',', ';'])
]
return authwords

Loading…
Cancel
Save