diff options
| author | Marko Tibold | 2013-03-06 21:16:40 +0100 | 
|---|---|---|
| committer | Marko Tibold | 2013-03-06 21:16:40 +0100 | 
| commit | 1037888505917ec50d02cdfe22e084cacc5994b8 (patch) | |
| tree | c333301fcb886d4b86074d63ad412912d2b2ccc3 | |
| parent | ddd7125a63c5187483058bad27c94676b9b6c16e (diff) | |
| download | django-rest-framework-1037888505917ec50d02cdfe22e084cacc5994b8.tar.bz2 | |
Prevent warning: no files found matching '*.txt' under directory
'rest_framework/templates' (there are only .html files in the templates
directory).
| -rw-r--r-- | MANIFEST.in | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/MANIFEST.in b/MANIFEST.in index 00e45086..15c4d0b0 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,2 +1,2 @@  recursive-include rest_framework/static *.js *.css *.png -recursive-include rest_framework/templates *.txt *.html +recursive-include rest_framework/templates *.html | 
