diff options
author | Javier Jardón <jjardon@gnome.org> | 2018-08-28 23:18:50 +0100 |
---|---|---|
committer | Javier Jardón <jjardon@gnome.org> | 2018-08-28 23:22:00 +0100 |
commit | d3c32ca2f7d667c6d0ce5bc21118ef7cbd7cdc0a (patch) | |
tree | bbdcfa1d748beeb319b1c0b7bc672cf877710750 /doc/source/conf.py | |
parent | 10eeb503e042d25d9823cb4e7346069c0d815f2c (diff) | |
download | buildstream-d3c32ca2f7d667c6d0ce5bc21118ef7cbd7cdc0a.tar.gz |
doc/source/conf.py: Fix E402 warning
Diffstat (limited to 'doc/source/conf.py')
-rw-r--r-- | doc/source/conf.py | 4 |
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. |