From f826198214d569a0fe81aea15be96a1fb60e8373 Mon Sep 17 00:00:00 2001 From: Nate Hardison Date: Wed, 22 May 2013 19:34:14 -0700 Subject: [PATCH] Use "is not None" convention --- lms/static/sass/application.scss.mako | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lms/static/sass/application.scss.mako b/lms/static/sass/application.scss.mako index 4ec91dbf57..c310347b6f 100644 --- a/lms/static/sass/application.scss.mako +++ b/lms/static/sass/application.scss.mako @@ -45,7 +45,7 @@ ## called themes//, with its base Sass file in ## themes//static/sass/_.scss. That one entry ## point can be used to @import in as many other things as needed. -% if not env.get('THEME_NAME') is None: +% if env.get('THEME_NAME') is not None: // import theme's Sass overrides @import '${env.get('THEME_NAME')}' % endif