diff options
author | Ian Bicking <ianb@colorstudy.com> | 2010-10-28 11:03:27 -0700 |
---|---|---|
committer | Ian Bicking <ianb@colorstudy.com> | 2010-10-28 11:03:27 -0700 |
commit | cdd5b17ca1015a56f81311cbeb3d333e57a1ab7f (patch) | |
tree | d5069f3ec195bb76a574db231ec3c3ba02e359f2 | |
parent | 3a75fbea91c75d5a1cf6db2ae2dd05be2cd7b780 (diff) | |
download | pastedeploy-git-cdd5b17ca1015a56f81311cbeb3d333e57a1ab7f.tar.gz |
remove prints from finddata
-rw-r--r-- | docs/news.txt | 5 | ||||
-rw-r--r-- | tests/finddata.py | 4 |
2 files changed, 5 insertions, 4 deletions
diff --git a/docs/news.txt b/docs/news.txt index 119e110..a48214a 100644 --- a/docs/news.txt +++ b/docs/news.txt @@ -1,6 +1,11 @@ Paste Deployment News ===================== +hg tip +------ + +* Was printing extraneous data when calling setup.py + 1.3.4 ----- diff --git a/tests/finddata.py b/tests/finddata.py index 4d4fa90..16057dc 100644 --- a/tests/finddata.py +++ b/tests/finddata.py @@ -93,7 +93,3 @@ def find_package_data( out.setdefault(package, []).append(prefix+name) return out -if __name__ == '__main__': - import pprint - pprint.pprint( - find_package_data(show_ignored=True)) |