Commit 0cd99ce1 authored by Ivan Tyagov's avatar Ivan Tyagov

Fix unbound variable

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@36333 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent abf1ceef
...@@ -235,7 +235,7 @@ class TextDocument(CachedConvertableMixin, BaseConvertableFileMixin, ...@@ -235,7 +235,7 @@ class TextDocument(CachedConvertableMixin, BaseConvertableFileMixin,
def getBaseData(self, default=_MARKER): def getBaseData(self, default=_MARKER):
""" """
""" """
self._checkConversionFormatPermission(None, **kw) self._checkConversionFormatPermission(None)
if default is _MARKER: if default is _MARKER:
return self.getTextContent() return self.getTextContent()
else: else:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment