]> git-server-git.apps.pok.os.sepia.ceph.com Git - remoto.git/commitdiff
README: typo in logging.basicConfig
authorKen Dreyer <kdreyer@redhat.com>
Fri, 11 Mar 2016 13:48:56 +0000 (06:48 -0700)
committerKen Dreyer <kdreyer@redhat.com>
Fri, 11 Mar 2016 13:48:56 +0000 (06:48 -0700)
basiConfig -> basicConfig

README.rst

index baa8af51158be1391a9c0f95a604faa339b5ccca..c4aa720f4ea5d58c3d1a681ee94a8dbd1fcaa63a 100644 (file)
@@ -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'])