Explorar el Código

Fix extraneous arg in "db shell" CLI

theenglishway (time) hace 7 años
padre
commit
a49287600c
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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)