summaryrefslogtreecommitdiffstats
path: root/docs/conf.py
diff options
context:
space:
mode:
authornicolargo <nicolas@nicolargo.com>2023-05-13 15:30:09 +0200
committernicolargo <nicolas@nicolargo.com>2023-05-13 15:30:09 +0200
commit6ea9185ba2106339c2ca05bdab15435c461b7c90 (patch)
treeaccf635f0bdfbee56fb976d5dc18c25c7f582dd0 /docs/conf.py
parente8daa49eeae92cd33b754958b482926a4ec399b8 (diff)
Error while generating the documentation (ModuleNotFoundError: No module named 'glances') #2391
Diffstat (limited to 'docs/conf.py')
-rw-r--r--docs/conf.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/conf.py b/docs/conf.py
index 6009c0e6..51f800db 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -12,7 +12,6 @@
# All configuration values have a default; values that are commented out
# serve to show the default.
-from glances import __version__
import sys
import os
from datetime import datetime
@@ -26,6 +25,7 @@ from datetime import datetime
sys.path.insert(0, os.path.abspath('..'))
# WARNING: Do not move this import before the sys.path.insert() call.
+from glances import __version__
# -- General configuration ------------------------------------------------