summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTristan Maat <tristan.maat@codethink.co.uk>2018-03-27 16:01:25 +0100
committerTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2018-04-20 20:00:46 +0900
commitaab0229b8ab76a45b4be5576681e42ff5cd298de (patch)
tree6b79e7ea0510f58d670d028758fd85dfeb0ca06f
parent7854fc5037204474d16618c657a1cd1ca12c888e (diff)
downloadbuildstream-aab0229b8ab76a45b4be5576681e42ff5cd298de.tar.gz
deb.py: Make pylint stop complaining about arpy
-rw-r--r--buildstream/plugins/sources/deb.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/buildstream/plugins/sources/deb.py b/buildstream/plugins/sources/deb.py
index ff4321515..daf6f94c7 100644
--- a/buildstream/plugins/sources/deb.py
+++ b/buildstream/plugins/sources/deb.py
@@ -46,7 +46,7 @@
import tarfile
from contextlib import contextmanager, ExitStack
-import arpy
+import arpy # pylint: disable=import-error
from .tar import TarSource