From 534766560d502970a902a5051c8bb3e15793afa9 Mon Sep 17 00:00:00 2001 From: mpeterv Date: Fri, 4 Dec 2015 00:32:07 +0300 Subject: [PATCH] Silence pep8 --- hererocks.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/hererocks.py b/hererocks.py index 81b9f6f..e3d1c46 100755 --- a/hererocks.py +++ b/hererocks.py @@ -374,8 +374,9 @@ class RioLua(Lua): if self.major_version == "5.1": if self.compat == "none": self.extra_defines.extend([ - "#undef LUA_COMPAT_VARARG", "#undef LUA_COMPAT_MOD", "#undef LUA_COMPAT_LSTR", - "#undef LUA_COMPAT_GFIND", "#undef LUA_COMPAT_OPENLIB" + "#undef LUA_COMPAT_VARARG", "#undef LUA_COMPAT_MOD", + "#undef LUA_COMPAT_LSTR", "#undef LUA_COMPAT_GFIND", + "#undef LUA_COMPAT_OPENLIB" ]) elif self.major_version == "5.2": self.patch_build_option(" -DLUA_COMPAT_ALL", "")