summaryrefslogtreecommitdiffstats
path: root/contrib/python/ipython/py3/IPython/extensions
diff options
context:
space:
mode:
authorAlexander Smirnov <[email protected]>2024-03-13 10:33:47 +0000
committerAlexander Smirnov <[email protected]>2024-03-13 10:33:47 +0000
commit1df54be5538361db7f33afc618d1597272414294 (patch)
treebb39e4b75db0b0a9722468eacef91ffd1388eb8d /contrib/python/ipython/py3/IPython/extensions
parent7a673cf01feefbe95bf5e7396d9179a5f283aeba (diff)
parent01aef806626b16e9817e07f718f10e151f52e400 (diff)
Merge branch 'rightlib' into mergelibs-240313-1032
Diffstat (limited to 'contrib/python/ipython/py3/IPython/extensions')
-rw-r--r--contrib/python/ipython/py3/IPython/extensions/storemagic.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/python/ipython/py3/IPython/extensions/storemagic.py b/contrib/python/ipython/py3/IPython/extensions/storemagic.py
index d9d00f14b9a..f3bc8f6c136 100644
--- a/contrib/python/ipython/py3/IPython/extensions/storemagic.py
+++ b/contrib/python/ipython/py3/IPython/extensions/storemagic.py
@@ -145,7 +145,7 @@ class StoreMagics(Magics):
if args:
for arg in args:
try:
- obj = db['autorestore/' + arg]
+ obj = db["autorestore/" + arg]
except KeyError:
try:
restore_aliases(ip, alias=arg)