summaryrefslogtreecommitdiffstats
path: root/src/engine/SCons/Tool/__init__.py
diff options
context:
space:
mode:
authorWilliam Deegan <bill@baddogconsulting.com>2016-10-25 03:08:59 (GMT)
committerWilliam Deegan <bill@baddogconsulting.com>2016-10-25 03:08:59 (GMT)
commit3031330216256cbff09b5631fdf68fa75d2439f2 (patch)
treebb66fffcacb1f35312655df22f5f6e50ae7506d5 /src/engine/SCons/Tool/__init__.py
parentcff6d51e2d64ab0a716c1321ea5afb1c99a12b52 (diff)
downloadSCons-3031330216256cbff09b5631fdf68fa75d2439f2.zip
SCons-3031330216256cbff09b5631fdf68fa75d2439f2.tar.gz
SCons-3031330216256cbff09b5631fdf68fa75d2439f2.tar.bz2
Fix some minor formatting issues flagged by pycharms
Diffstat (limited to 'src/engine/SCons/Tool/__init__.py')
-rw-r--r--src/engine/SCons/Tool/__init__.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/engine/SCons/Tool/__init__.py b/src/engine/SCons/Tool/__init__.py
index 45d0aa1..cc5a508 100644
--- a/src/engine/SCons/Tool/__init__.py
+++ b/src/engine/SCons/Tool/__init__.py
@@ -925,9 +925,9 @@ class ToolInitializerMethod(object):
def get_builder(self, env):
"""
- Returns the appropriate real Builder for this method name
- after having the associated ToolInitializer object apply
- the appropriate Tool module.
+ Returns the appropriate real Builder for this method name
+ after having the associated ToolInitializer object apply
+ the appropriate Tool module.
"""
builder = getattr(env, self.__name__)
@@ -989,8 +989,8 @@ class ToolInitializer(object):
def apply_tools(self, env):
"""
- Searches the list of associated Tool modules for one that
- exists, and applies that to the construction environment.
+ Searches the list of associated Tool modules for one that
+ exists, and applies that to the construction environment.
"""
for t in self.tools:
tool = SCons.Tool.Tool(t)