# File lib/icalendar/tzinfo.rb, line 57
        def offset_from
            a = previous_offset.utc_total_offset
            sprintf("%2.2d%2.2d", (a / 3600).to_i, ((a / 60) % 60).to_i)
        end