summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2016-01-16 06:11:13 -0500
committerJason R. Coombs <jaraco@jaraco.com>2016-01-16 06:11:13 -0500
commitbac4c8fb46044be814f78e1cb209173c3dc05344 (patch)
tree7352daf29ab5a796cffa5cd7696340341ee21f7b
parentc5546cd50a3d349e9ab53c3789fa2cc11c71c1c5 (diff)
downloadpython-setuptools-bitbucket-bac4c8fb46044be814f78e1cb209173c3dc05344.tar.gz
Move trailing comment to docstring
-rw-r--r--setuptools/command/build_py.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/setuptools/command/build_py.py b/setuptools/command/build_py.py
index 8a50f032..32e37e52 100644
--- a/setuptools/command/build_py.py
+++ b/setuptools/command/build_py.py
@@ -59,7 +59,8 @@ class build_py(orig.build_py, Mixin2to3):
self.byte_compile(orig.build_py.get_outputs(self, include_bytecode=0))
def __getattr__(self, attr):
- if attr == 'data_files': # lazily compute data files
+ "lazily compute data files"
+ if attr == 'data_files':
self.data_files = files = self._get_data_files()
return files
return orig.build_py.__getattr__(self, attr)