Просмотр исходного кода

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

Xavier Ordoquy 10 лет назад
Родитель
Сommit
c614515735
1 измененных файлов с 1 добавлено и 1 удалено
  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):