Kaydet (Commit) e30b7a91 authored tarafından Gregory P. Smith's avatar Gregory P. Smith

Added 'get_inputs()' methods, needed by the "install" command's

'get_inputs()'.
üst ba0506b3
......@@ -18,3 +18,6 @@ class install_data (install_misc):
def run (self):
self._copy_files(self.distribution.data)
def get_inputs (self):
return self.distribution.data or []
......@@ -32,4 +32,7 @@ class install_scripts(install_misc):
self.announce("changing mode of %s to %o" % (file, mode))
os.chmod(file, mode)
def get_inputs (self):
return self.distribution.scripts or []
# class install_scripts
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment