소스 검색

Fix extraneous arg in "db shell" CLI

theenglishway (time) 7 년 전
부모
커밋
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)