summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--parsers/Footer.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/parsers/Footer.java b/parsers/Footer.java
index f8d85ae..ad85c10 100644
--- a/parsers/Footer.java
+++ b/parsers/Footer.java
@@ -25,7 +25,7 @@ import java.util.regex.*;
import scruf.io.*;
public class Footer implements Parser {
public String parse(String fileContent) {
- Pattern pattern = Pattern.compile("\\-{70}\\n(.+)\\n\\-{70}");
+ Pattern pattern = Pattern.compile("\\-{70}\\n(.+)\\n\\-{70}",Pattern.DOTALL);
Matcher matcher = pattern.matcher(fileContent);
StringBuffer sbuffer = new StringBuffer();
String footer=null;