Changed the default format back to "text" instead of "htmlembedded".

This commit is contained in:
Adam Waldenberg 2013-06-26 02:42:41 +02:00
parent 45429d9a35
commit c19680dc39
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ import os
import zipfile
__available_formats__ = ["html", "htmlembedded", "text", "xml"]
__default_format__ = __available_formats__[1]
__default_format__ = __available_formats__[2]
__selected_format__ = __default_format__
class InvalidFormatError(Exception):