Commit 485b4567 authored by ibuler's avatar ibuler

Merge pull request #177 from jumpserver/fixed_log

fix(log) fix load_full_log function bug
parents 209c0786 d31f882f
......@@ -317,7 +317,7 @@ class TermLogRecorder(object):
if self._lists:
self.file = self._lists.get(filename=filename)
else:
self.file = TermLog.objects.get(user=user.id, filename=filename)
self.file = TermLog.objects.get(filename=filename)
if self.file.logPath == 'locale':
return self.file.log
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