From 53eee452eb1be82073d418d1f3ccdabf2c10ed4b Mon Sep 17 00:00:00 2001
From: Kenneth Reitz <me@kennethreitz.org>
Date: Thu, 4 Feb 2016 23:33:59 -0500
Subject: [PATCH] --traceback

---
 bin/steps/collectstatic | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bin/steps/collectstatic b/bin/steps/collectstatic
index 6c30c1b8..cef49795 100755
--- a/bin/steps/collectstatic
+++ b/bin/steps/collectstatic
@@ -30,7 +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  2>&1 | sed '/^Copying/d;/^$/d;/^ /d' | indent
+    python $MANAGE_FILE collectstatic --noinput --traceback 2>&1 | sed '/^Copying/d;/^$/d;/^ /d' | indent
     COLLECTSTATIC_STATUS="${PIPESTATUS[0]}"
 
     set -e
-- 
GitLab