Software /
code /
prosody
Changeset
7158:e5412e685991
loggingmanager: Import select() to fix global access
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Thu, 18 Feb 2016 13:21:12 +0000 |
parents | 7156:18b7ffd08d56 |
children | 7159:f11d6c9d1c1f 7160:5c1ee8c06235 |
files | core/loggingmanager.lua |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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";