From e06733b6dc33ebe57121ee54b53f7841a4593a5e Mon Sep 17 00:00:00 2001 From: Cady_Chen Date: Thu, 17 Nov 2016 10:58:13 +0800 Subject: [PATCH] Fix "wrap functions with 2 blank lines" pep8 check Now gates are requires this pep8 rule as mandatory so until it'll be fixed merge is blocked Change-Id: I5dc76938b9f65f2ca05248ad0b95335a142f5912 --- instack/main.py | 1 + 1 file changed, 1 insertion(+) diff --git a/instack/main.py b/instack/main.py index 89fe63a..12f5322 100644 --- a/instack/main.py +++ b/instack/main.py @@ -178,5 +178,6 @@ def main(argv=sys.argv): LOG.info("Ending run of instack.") + if __name__ == '__main__': main()