[rtems-docs commit] common/waf.py: Fix indentation.

Christian Mauderer christianm at rtems.org
Wed Dec 19 10:00:41 UTC 2018


Module:    rtems-docs
Branch:    master
Commit:    a7dc08331ad412975372d8001bad093d362be002
Changeset: http://git.rtems.org/rtems-docs/commit/?id=a7dc08331ad412975372d8001bad093d362be002

Author:    Christian Mauderer <christian.mauderer at embedded-brains.de>
Date:      Tue Dec 18 18:45:00 2018 +0100

common/waf.py: Fix indentation.

Python 3 produces an error if indentation is mixed tabs and spaces.

---

 common/waf.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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:




More information about the vc mailing list