diff --git a/bin/steps/django/init b/bin/steps/django/init
index ec6aaa765f678ddcdd71154eeeab7380f3bd5cbe..63c51855e151ff5608bf7bb60164b69fd46189db 100755
--- a/bin/steps/django/init
+++ b/bin/steps/django/init
@@ -4,7 +4,7 @@ SETTINGS_FILE=$(find . -maxdepth 3 -type f -name 'settings.py' | head -1)
 PROJECT=$(dirname $SETTINGS_FILE)
 
 # Disable injection for new applications.
-if [ ! -f .heroku/injection_disabled ]; then
+if [ -f .heroku/injection_disabled ]; then
   DISABLE_INJECTION=1
 fi