From d18b00555824d686ff0a0180a3bbcad524c04eb2 Mon Sep 17 00:00:00 2001 From: Peter Melnichenko Date: Wed, 13 Sep 2017 16:19:21 +0300 Subject: [PATCH] Fix a pyflakes warning --- hererocks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hererocks.py b/hererocks.py index c5c538c..2e16b5a 100755 --- a/hererocks.py +++ b/hererocks.py @@ -1306,7 +1306,7 @@ class RioLua(Lua): run("ar", "rcu", self.arch_file, lib_objs) run("ranlib", self.arch_file) - built_luac_objs = [obj for obj in luac_objs if obj in objs] + built_luac_objs = [obj_ for obj_ in luac_objs if obj_ in objs] # Handle the case when there are no source files for `luac`, likely because installing # from a git repo that does not have them, like the default one.