summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Mauderer <christian.mauderer@embedded-brains.de>2018-12-18 18:45:00 +0100
committerChristian Mauderer <oss@c-mauderer.de>2018-12-18 18:45:00 +0100
commita7dc08331ad412975372d8001bad093d362be002 (patch)
treeec04709eaf843061ef1bc6c440457245a7929e36
parent75f24638b3fc10537644ba3f88025504d298cc2a (diff)
common/waf.py: Fix indentation.
Python 3 produces an error if indentation is mixed tabs and spaces.
-rw-r--r--common/waf.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/waf.py b/common/waf.py
index 98ce56f..d2cb432 100644
--- a/common/waf.py
+++ b/common/waf.py
@@ -481,7 +481,7 @@ def xml_catalogue(ctx, building):
# Import using the imp API so the module is reloaded for us.
#
import imp
- sys.path = [top_dir.find_node(doc).abspath()]
+ sys.path = [top_dir.find_node(doc).abspath()]
mf = imp.find_module('conf')
sys.path = sp[:]
try: