From: Ken Dreyer Date: Fri, 11 Mar 2016 13:48:56 +0000 (-0700) Subject: README: typo in logging.basicConfig X-Git-Tag: 0.0.28~4^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=f072403223ce07e4e8c2666daeaaa3814fc9d67f;p=remoto.git README: typo in logging.basicConfig basiConfig -> basicConfig --- diff --git a/README.rst b/README.rst index baa8af5..c4aa720 100644 --- a/README.rst +++ b/README.rst @@ -24,7 +24,7 @@ the very least, has both ``error`` and ``debug``. Those are called for This is how it would look with a basic logger passed in:: >>> import logging - >>> logging.basiConfig(level=logging.DEBUG) + >>> logging.basicConfig(level=logging.DEBUG) >>> logger = logging.getLogger('hostname') >>> conn = remoto.Connection('hostname', logger=logger) >>> run(conn, ['ls', '-a'])