Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions xmind/core/loader.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ def __init__(self, path):
elif stream == const.COMMENTS_XML:
self._comments_steam = utils.parse_dom_string(input_stream.read(stream))

except BaseException:
pass
except BaseException as e:
raise e

def get_workbook(self):
""" Parse XMind file to `WorkbookDocument` object and return
Expand Down