diff options
author | William Deegan <bill@baddogconsulting.com> | 2020-01-02 21:06:20 (GMT) |
---|---|---|
committer | William Deegan <bill@baddogconsulting.com> | 2020-01-02 21:06:20 (GMT) |
commit | f59d3a33ca816f9b6a9d3cc21b867d19a7a8a150 (patch) | |
tree | ce6a7459bb31a413eee7a78ce04bca3ce1f6269b | |
parent | 68814f3ea56bd4f9e7dbc21309e5a8f509304c45 (diff) | |
download | SCons-f59d3a33ca816f9b6a9d3cc21b867d19a7a8a150.zip SCons-f59d3a33ca816f9b6a9d3cc21b867d19a7a8a150.tar.gz SCons-f59d3a33ca816f9b6a9d3cc21b867d19a7a8a150.tar.bz2 |
Remove extraneous debug output
-rw-r--r-- | src/engine/SCons/Util.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/engine/SCons/Util.py b/src/engine/SCons/Util.py index 8c5cecf..d930dde 100644 --- a/src/engine/SCons/Util.py +++ b/src/engine/SCons/Util.py @@ -626,7 +626,6 @@ class Delegate(object): self.attribute = attribute def __get__(self, obj, cls): - print("IN GET") if isinstance(obj, cls): return getattr(obj._subject, self.attribute) else: |