aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Warta <[email protected]>2017-02-26 20:44:00 +0100
committerSimon Warta <[email protected]>2017-02-26 21:04:20 +0100
commitdd2fb92d7170e6218417708b4d4bf05a6ffcf500 (patch)
tree1ffc6a3cdfb13697393bf2215e105271da116678
parent70d9d062d095242bcfe8df25fc57fb88eadec3a9 (diff)
Configure: Disable wrong-import-position pylint warning
-rwxr-xr-xconfigure.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.py b/configure.py
index 9f4246775..8dbf0be6c 100755
--- a/configure.py
+++ b/configure.py
@@ -38,7 +38,7 @@ import optparse # pylint: disable=deprecated-module
if 'dont_write_bytecode' in sys.__dict__:
sys.dont_write_bytecode = True
-import botan_version
+import botan_version # pylint: disable=wrong-import-position
class ConfigureError(Exception):
pass