Commit d31f882f authored by ibuler's avatar ibuler

fix(log) fix load_full_log function bug

fixed
parent d2b4594b
...@@ -317,7 +317,7 @@ class TermLogRecorder(object): ...@@ -317,7 +317,7 @@ class TermLogRecorder(object):
if self._lists: if self._lists:
self.file = self._lists.get(filename=filename) self.file = self._lists.get(filename=filename)
else: else:
self.file = TermLog.objects.get(user=user.id, filename=filename) self.file = TermLog.objects.get(filename=filename)
if self.file.logPath == 'locale': if self.file.logPath == 'locale':
return self.file.log return self.file.log
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