Просмотр исходного кода

Fix extraneous arg in "db shell" CLI

theenglishway (time) 7 лет назад
Родитель
Сommit
a49287600c
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      twhatter/cli.py

+ 1 - 1
twhatter/cli.py

@@ -75,7 +75,7 @@ def shell(ctx):
         'User': User
     }
     IPython.start_ipython(argv=[], user_ns=user_ns)
-    ctx.obj['output'].stop(session)
+    ctx.obj['output'].stop()
 
 
 db.add_command(profile)