diff options
author | Raphaël Barrois <raphael.barrois@polyconseil.fr> | 2015-03-27 13:50:07 +0100 |
---|---|---|
committer | Raphaël Barrois <raphael.barrois@polyconseil.fr> | 2015-03-27 13:50:07 +0100 |
commit | 03ca4ecebc914f2e120e902b8fcbe2b526460ee6 (patch) | |
tree | 80df100934c9ed3084067e14c0952ca5848441b0 | |
parent | d6f351c5af74ac659b4d3add916546d286ff4fcd (diff) | |
download | factory-boy-03ca4ecebc914f2e120e902b8fcbe2b526460ee6.tar factory-boy-03ca4ecebc914f2e120e902b8fcbe2b526460ee6.tar.gz |
Remove debug prints
-rw-r--r-- | factory/django.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/factory/django.py b/factory/django.py index 7862d75..eb07bfb 100644 --- a/factory/django.py +++ b/factory/django.py @@ -194,7 +194,6 @@ class FileField(declarations.ParameteredAttribute): """Fill in the field.""" filename, content = self._make_content(extra) - print("Returning file with filename=%r, contents=%r" % (filename, content)) return django_files.File(content.file, filename) |