summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJavier Jardón <jjardon@gnome.org>2018-08-28 23:18:50 +0100
committerJavier Jardón <jjardon@gnome.org>2018-08-28 23:22:00 +0100
commitd3c32ca2f7d667c6d0ce5bc21118ef7cbd7cdc0a (patch)
treebbdcfa1d748beeb319b1c0b7bc672cf877710750
parent10eeb503e042d25d9823cb4e7346069c0d815f2c (diff)
downloadbuildstream-d3c32ca2f7d667c6d0ce5bc21118ef7cbd7cdc0a.tar.gz
doc/source/conf.py: Fix E402 warning
-rw-r--r--doc/source/conf.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/source/conf.py b/doc/source/conf.py
index 0190d6d48..60477bbd5 100644
--- a/doc/source/conf.py
+++ b/doc/source/conf.py
@@ -19,10 +19,10 @@
#
import os
import sys
-sys.path.insert(0, os.path.abspath('..'))
-
from buildstream import __version__
+sys.path.insert(0, os.path.abspath('..'))
+
# -- General configuration ------------------------------------------------
# If your documentation needs a minimal Sphinx version, state it here.