From e6fa0cf4ad0fb717314d7a61d7826a06fdcd0d36 Mon Sep 17 00:00:00 2001 From: Andre Anjos <andre.dos.anjos@gmail.com> Date: Fri, 24 Nov 2017 11:19:25 +0100 Subject: [PATCH] Fix py3 doctest --- doc/config.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/config.rst b/doc/config.rst index 1941ef4..0bf0bca 100644 --- a/doc/config.rst +++ b/doc/config.rst @@ -164,7 +164,7 @@ When loaded, this configuration file produces the following result: >>> mod = _loadrc() >>> #notice `mod` is a normal python module >>> print(mod) - <module 'rc' (built-in)> + <module 'rc'...> >>> print(json.dumps(dict((k,v) for k,v in mod.__dict__.items() if not k.startswith('_')), indent=2, sort_keys=True)) # doctest: +NORMALIZE_WHITESPACE { "bob_db_atnt": { -- GitLab