Parcourir la source

Return a compatible value if there are no package_data to install.

Xavier Ordoquy il y a 10 ans
Parent
commit
c614515735
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      setup.py

+ 1 - 1
setup.py

@@ -36,7 +36,7 @@ def get_package_data(package):
     if filepaths:
         return {package: filepaths}
     else:
-        return None
+        return {}
 
 
 def read(fname):