# HG changeset patch # User Kim Alvefur # Date 1577131778 -3600 # Node ID a6cc5b844d7b21a1b1a5f2adfbb1e086e7694d62 # Parent 19ec384eb78213483e1b6c0bc6f2d78522ee9411 util.mercurial: Ignore an unused error variable [luacheck] diff -r 19ec384eb782 -r a6cc5b844d7b util/mercurial.lua --- a/util/mercurial.lua Mon Dec 23 21:02:19 2019 +0100 +++ b/util/mercurial.lua Mon Dec 23 21:09:38 2019 +0100 @@ -19,7 +19,7 @@ hg_changelog:close(); end else - local hg_archival,e = io.open(path.."/.hg_archival.txt"); + local hg_archival,e = io.open(path.."/.hg_archival.txt"); -- luacheck: ignore 211/e if hg_archival then local repo = hg_archival:read("*l"); local node = hg_archival:read("*l");