Skip to content

Commit

Permalink
Merge branch 'hotfix/0.1.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
miki725 committed Jan 20, 2014
2 parents cce4388 + 1813f16 commit 51eda05
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion rest_framework_bulk/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = '0.1'
__version__ = '0.1.1'
__author__ = 'Miroslav Shubernetskiy'

try:
Expand Down
6 changes: 5 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,11 @@ def get_package_data(package):
for base, filenames in walk:
filepaths.extend([os.path.join(base, filename)
for filename in filenames])
return {package: filepaths}

if filepaths:
return {package: filepaths}
else:
return None


def read(fname):
Expand Down

0 comments on commit 51eda05

Please sign in to comment.