From cda2a0a1aeabed4016f9e9f9f628a3fc3ab516f1 Mon Sep 17 00:00:00 2001 From: Stella Rouzi Date: Tue, 17 Jun 2014 13:34:38 +0300 Subject: [PATCH] fix trailing space, add missing end --- app/controllers/admin/schedules_controller.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/controllers/admin/schedules_controller.rb b/app/controllers/admin/schedules_controller.rb index 27a3dc9d..85f2ac79 100644 --- a/app/controllers/admin/schedules_controller.rb +++ b/app/controllers/admin/schedules_controller.rb @@ -42,7 +42,7 @@ module Admin Rails.logger.debug("Loading #{time}") # FIXME: Same here as in events_controller.rb. Event timezone should be applied - # only on output + # only on output # zone = ActiveSupport::TimeZone::new(@conference.timezone) # start_time = DateTime.strptime(time + zone.formatted_offset, "%Y-%m-%d %k:%M %Z") start_time = DateTime.strptime(time, '%Y-%m-%d %k:%M') @@ -52,3 +52,4 @@ module Admin end end +end