fix moinmoin split() to not drop trailing whitespace thus breaking array access
diff --git a/src/com/atlassian/uwc/exporters/MoinmoinExporter.java b/src/com/atlassian/uwc/exporters/MoinmoinExporter.java
index 94fd9f9..7643cc7 100644
--- a/src/com/atlassian/uwc/exporters/MoinmoinExporter.java
+++ b/src/com/atlassian/uwc/exporters/MoinmoinExporter.java
@@ -250,7 +250,7 @@
 			final String filecontens = FileUtils.readTextFile(revlogf, charset);
 			for( String line : filecontens.split("\\n") ){
 				log.debug("read line of revisions file: " + line);
-				String[] s = line.split("\\t");
+				String[] s = line.split("\\t",-1);
 				
 				RevInfo r = new RevInfo();