diff --git a/bin/steps/collectstatic b/bin/steps/collectstatic
index 71e72353fc572dc1179824d1abc0600e3fd6dccb..9766c0ff1b97f96e2de402701afa73d35a1036ae 100755
--- a/bin/steps/collectstatic
+++ b/bin/steps/collectstatic
@@ -32,7 +32,7 @@ if [ ! "$DISABLE_COLLECTSTATIC" ] && [ -f "$MANAGE_FILE" ] && [ "$DJANGO_INSTALL
     # Run collectstatic, cleanup some of the noisy output.
     python $MANAGE_FILE collectstatic --noinput --traceback 2>&1 | sed '/^Copying/d;/^$/d;/^ /d' | indent
     echo
-    python $MANAGE_FILE collectstatic
+    python $MANAGE_FILE collectstatic | indent
     COLLECTSTATIC_STATUS="${PIPESTATUS[0]}"
 
     set -e