fixed typo in globals, issue 1213, thanks jkellas

This commit is contained in:
mdipierro
2012-12-11 15:54:57 -06:00
parent 5188b64704
commit 21e2e5e2af
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1 +1 @@
Version 2.3.0 (2012-12-11 10:52:39) rc1
Version 2.3.0 (2012-12-11 15:54:14) rc1
+1 -1
View File
@@ -129,7 +129,7 @@ class Request(Storage):
cmd_opts = global_settings.cmd_options
#checking if this is called within the scheduler or within the shell
#in addition to checking if it's not a cronjob
if ((cdm_opts and (cmd_opts.shell or cmd_opts.scheduler))
if ((cmd_opts and (cmd_opts.shell or cmd_opts.scheduler))
or global_settings.cronjob or self.is_https):
current.session.secure()
else: