Skip to content

Commit

Permalink
Use DOTALL regular expression processing on replace_metadata and in/e…
Browse files Browse the repository at this point in the history
…xclude_metadata. Should only effect description where it will allow full replacement.
  • Loading branch information
JimmXinu committed Nov 13, 2016
1 parent 77515c8 commit 4c71fd7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fanficfare/configurable.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@

def re_compile(regex,line):
try:
return re.compile(regex)
return re.compile(regex,re.DOTALL)
except Exception, e:
raise exceptions.RegularExpresssionFailed(e,regex,line)

Expand Down

0 comments on commit 4c71fd7

Please sign in to comment.