diff --git a/bin/steps/collectstatic b/bin/steps/collectstatic
index bda8e12e13f03b2bd6edf09abcdbc069a3c7b80a..7ebe5b6fa24c3962cbfd923e524cc2aca8acc660 100755
--- a/bin/steps/collectstatic
+++ b/bin/steps/collectstatic
@@ -30,9 +30,7 @@ if [ ! "$DISABLE_COLLECTSTATIC" ] && [ -f "$MANAGE_FILE" ] && [ "$DJANGO_INSTALL
     echo "-----> Preparing static assets with 'collectstatic'"
 
     # Run collectstatic, cleanup some of the noisy output.
-    python $MANAGE_FILE collectstatic --noinput --traceback 2>&1 | sed '/^Post-processed/d;/^Copying/d;/^$/d;/^ /d' | indent
-    echo
-    python $MANAGE_FILE collectstatic 2>&1 | sed '/^Copying/d;/^$/d' | indent
+    python $MANAGE_FILE collectstatic --noinput --traceback 2>&1 | sed '/^Post-processed/d;/^Copying/d;/^$/d' | indent
     COLLECTSTATIC_STATUS="${PIPESTATUS[0]}"
 
     set -e