Browse Source

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

Xavier Ordoquy 10 years ago
parent
commit
c614515735
1 changed files with 1 additions and 1 deletions
  1. 1 1
      setup.py

+ 1 - 1
setup.py

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