diff --git a/bin/steps/django/collectstatic b/bin/steps/django/collectstatic
index 5676eb80901686268dceee677cdaaabf581db9d1..6a7a8b185c65225d7105a7d7413ea88d7c76847e 100755
--- a/bin/steps/django/collectstatic
+++ b/bin/steps/django/collectstatic
@@ -13,8 +13,8 @@ fi
 # Compile assets if collectstatic appears to be kosher.
 if [ "$RUN_COLLECTSTATIC" ]; then
     echo "-----> Collecting static files"
-    echo "python $MANAGE_FILE collectstatic --noinput --verbosity=0"
-    python $MANAGE_FILE collectstatic --noinput --verbosity=0 | indent
+    echo "python $MANAGE_FILE collectstatic --noinput"
+    python $MANAGE_FILE collectstatic --noinput | indent
 
     [ $? -ne 0 ] && {
         echo " !     Error running manage.py collectstatic. More info:"
@@ -23,4 +23,6 @@ if [ "$RUN_COLLECTSTATIC" ]; then
 else
     echo " !     Django collecstatic is not configured. Learn more:"
     echo "       http://devcenter.heroku.com/articles/django-assets"
-fi
\ No newline at end of file
+fi
+
+echo '\n'
\ No newline at end of file