]> granicus.if.org Git - python/commitdiff
'get_outputs()' now returns an empty list instead of None.
authorGreg Ward <gward@python.net>
Tue, 6 Jun 2000 02:18:13 +0000 (02:18 +0000)
committerGreg Ward <gward@python.net>
Tue, 6 Jun 2000 02:18:13 +0000 (02:18 +0000)
Lib/distutils/command/install_data.py

index acc89aa395da67454d78c125314e789e3ee2e090..5481dabe663eae92da1bef1773f094cde818a4a9 100644 (file)
@@ -56,4 +56,4 @@ class install_data (Command):
         return self.data_files or []
 
     def get_outputs (self):
-        return self.outfiles
+        return self.outfiles or []