Fix a pyflakes warning

This commit is contained in:
Peter Melnichenko 2017-09-13 16:19:21 +03:00
parent 898256d5c3
commit d18b005558

View File

@ -1306,7 +1306,7 @@ class RioLua(Lua):
run("ar", "rcu", self.arch_file, lib_objs) run("ar", "rcu", self.arch_file, lib_objs)
run("ranlib", self.arch_file) 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 # 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. # from a git repo that does not have them, like the default one.