mirror of
https://github.com/xonsh/xonsh.git
synced 2025-03-06 09:20:57 +01:00
fixes
This commit is contained in:
parent
a72a7ab01c
commit
f17030ffa1
1 changed files with 2 additions and 3 deletions
|
@ -23,11 +23,10 @@ def get_history_backend(env, ts, locked, gc=True, filename=None):
|
|||
except KeyError:
|
||||
print('Unknown history backend: {}. Use Json version'.format(backend))
|
||||
kls_history = JsonHistory
|
||||
print('History backend: {}'.format(kls_history))
|
||||
return kls_history(
|
||||
env=env.detype(),
|
||||
ts=[time.time(), None],
|
||||
locked=True,
|
||||
ts=ts,
|
||||
locked=locked,
|
||||
gc=gc,
|
||||
filename=filename,
|
||||
)
|
||||
|
|
Loading…
Add table
Reference in a new issue