# HG changeset patch # User Matthew Wild # Date 1455801672 0 # Node ID e5412e685991b352184fb9814fac1a402ff0e1a2 # Parent 18b7ffd08d56c5242713c2547590f99a88936fd3 loggingmanager: Import select() to fix global access diff -r 18b7ffd08d56 -r e5412e685991 core/loggingmanager.lua --- a/core/loggingmanager.lua Tue Feb 09 17:24:04 2016 +0100 +++ b/core/loggingmanager.lua Thu Feb 18 13:21:12 2016 +0000 @@ -16,7 +16,7 @@ local os_date = os.date; local getstyle, getstring = require "util.termcolours".getstyle, require "util.termcolours".getstring; local tostring = tostring; -local unpack = table.unpack or unpack; +local select, unpack = select, table.unpack or unpack; local config = require "core.configmanager"; local logger = require "util.logger";