diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2016-01-16 06:11:54 -0500 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2016-01-16 06:11:54 -0500 |
commit | f55db00043f3f47b7121c42d54433bc80a01c243 (patch) | |
tree | c6c0511becd78cfb9f84fd7b3c93be76a7baf014 /setuptools/command/build_py.py | |
parent | 434aef220e6ec7cfc609bce631ef8528c930c20c (diff) | |
download | python-setuptools-git-f55db00043f3f47b7121c42d54433bc80a01c243.tar.gz |
Remove superfluous local variable
Diffstat (limited to 'setuptools/command/build_py.py')
-rw-r--r-- | setuptools/command/build_py.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/setuptools/command/build_py.py b/setuptools/command/build_py.py index 32e37e52..c24646c3 100644 --- a/setuptools/command/build_py.py +++ b/setuptools/command/build_py.py @@ -61,8 +61,8 @@ class build_py(orig.build_py, Mixin2to3): def __getattr__(self, attr): "lazily compute data files" if attr == 'data_files': - self.data_files = files = self._get_data_files() - return files + self.data_files = self._get_data_files() + return self.data_files return orig.build_py.__getattr__(self, attr) def build_module(self, module, module_file, package): |