common/waf.py: Fix indentation.

Python 3 produces an error if indentation is mixed tabs and spaces.
This commit is contained in:
Christian Mauderer 2018-12-18 18:45:00 +01:00 committed by Christian Mauderer
parent 75f24638b3
commit a7dc08331a

View File

@ -481,7 +481,7 @@ def xml_catalogue(ctx, building):
# Import using the imp API so the module is reloaded for us. # Import using the imp API so the module is reloaded for us.
# #
import imp import imp
sys.path = [top_dir.find_node(doc).abspath()] sys.path = [top_dir.find_node(doc).abspath()]
mf = imp.find_module('conf') mf = imp.find_module('conf')
sys.path = sp[:] sys.path = sp[:]
try: try: