From 6049f135f92b66f949092ba279ae02125b25dda4 Mon Sep 17 00:00:00 2001 From: Thomas A Caswell Date: Mon, 17 Sep 2018 23:30:44 -0400 Subject: [PATCH] BLD: pragmatic fix for building basic_unit example on py37 This restores the formerly implicit 'cwd' in the path. closes #11838 --- doc/conf.py | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/conf.py b/doc/conf.py index 3e6dc476b09f..c59bce783a07 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -20,6 +20,7 @@ # is relative to the documentation root, use os.path.abspath to make it # absolute, like shown here. sys.path.append(os.path.abspath('.')) +sys.path.append('.') # General configuration # ---------------------