From 5b6feccffd2cc677173f19de7a001ddc7289269f Mon Sep 17 00:00:00 2001
From: Cory Lee <cory@edx.org>
Date: Wed, 19 Feb 2020 11:32:37 -0500
Subject: [PATCH] This key used to have underscores and was accidentally
 changed to not have underscores, setting it back to the old value

---
 lms/envs/common.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lms/envs/common.py b/lms/envs/common.py
index 68d52779d9f..97f0905d339 100644
--- a/lms/envs/common.py
+++ b/lms/envs/common.py
@@ -3332,7 +3332,7 @@ PROFILE_IMAGE_DEFAULT_FILE_EXTENSION = 'png'
 # profile images.  Once it has been set, changing it will make the
 # platform unaware of current image URLs, resulting in reverting all
 # users' profile images to the default placeholder image.
-PROFILE_IMAGE_SECRET_KEY = 'placeholder secret key'
+PROFILE_IMAGE_SECRET_KEY = 'placeholder_secret_key'
 PROFILE_IMAGE_MAX_BYTES = 1024 * 1024
 PROFILE_IMAGE_MIN_BYTES = 100
 PROFILE_IMAGE_SIZES_MAP = {
-- 
GitLab