From 93db7bcd1742d4ab27c942551f9eea189286ed91 Mon Sep 17 00:00:00 2001 From: Justin Riley Date: Thu, 21 Jul 2016 13:36:46 -0400 Subject: [PATCH] add log instance to IPython shell environment --- onedns/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/onedns/cli.py b/onedns/cli.py index 078bc43..2dd52b7 100644 --- a/onedns/cli.py +++ b/onedns/cli.py @@ -49,7 +49,7 @@ def shell(args, one_args, etcd_args): skyclient = onemon._skydns etcdclient = skyclient._etcd ns = dict(onemon=onemon, skyclient=skyclient, oneclient=oneclient, - etcdclient=etcdclient) + etcdclient=etcdclient, log=logger.log) utils.shell(local_ns=ns)