From: daurnimator Date: Mon, 18 Aug 2014 15:48:12 +0000 (-0400) Subject: luatz/timetable: Move require call to top of file X-Git-Url: https://git.madduck.net/etc/awesome.git/commitdiff_plain/f2fc0b840b9b1ce58e8c9ca0a858f613bb3bd8be luatz/timetable: Move require call to top of file --- diff --git a/luatz/timetable.lua b/luatz/timetable.lua index 318bb63..6a39a13 100644 --- a/luatz/timetable.lua +++ b/luatz/timetable.lua @@ -1,3 +1,4 @@ +local strftime = require "luatz.strftime".strftime local strformat = string.format local floor = math.floor local function idiv ( n , d ) @@ -143,7 +144,6 @@ function timetable_methods:rfc_3339 ( ) return strformat ( "%04u-%02u-%02uT%02u:%02u:%06.3f" , self:unpack ( ) ) end -local strftime = require "luatz.strftime".strftime function timetable_methods:strftime ( format_string ) return strftime ( format_string , self ) end