diff --git a/Makefile.am b/Makefile.am index 76cab14ad..044806fc0 100644 --- a/Makefile.am +++ b/Makefile.am @@ -342,8 +342,18 @@ endif if HAVE_FLAKE8 ALL_LOCAL += flake8-check +# E111 indentation is not a multiple of four +# E112 expected an indented block +# E113 unexpected indentation +# E123 closing bracket does not match indentation of opening bracket's line +# E126 continuation line over-indented for hanging indent +# E127 continuation line over-indented for visual indent +# E128 continuation line under-indented for visual indent +# E129 visually indented line with same indent as next logical line +# E131 continuation line unaligned for hanging indent +# E501 line too long (80 > 79 characters) flake8-check: $(FLAKE8_PYFILES) - $(AM_V_GEN) if flake8 $^ --ignore=E111,E112,E113,E123,E126,E127,E128,E129,E131,E501,E502,E703 ${FLAKE8_FLAGS}; then touch $@; else exit 1; fi + $(AM_V_GEN) if flake8 $^ --ignore=E111,E112,E113,E123,E126,E127,E128,E129,E131,E501 ${FLAKE8_FLAGS}; then touch $@; else exit 1; fi endif include $(srcdir)/manpages.mk diff --git a/vtep/ovs-vtep b/vtep/ovs-vtep index 07856c410..dd5b1a779 100755 --- a/vtep/ovs-vtep +++ b/vtep/ovs-vtep @@ -165,7 +165,7 @@ class Logical_Switch(object): def del_lbinding(self, lbinding): vlog.info("removing %s binding from %s" % (lbinding, self.name)) port_no = self.ports[lbinding] - ovs_ofctl("del-flows %s in_port=%s" % (self.short_name, port_no)); + ovs_ofctl("del-flows %s in_port=%s" % (self.short_name, port_no)) del self.ports[lbinding] self.update_flood() @@ -520,9 +520,9 @@ def add_binding(binding, ls): # Create a logical_bindings_stats record. if not vlan_: vlan_ = "0" - vtep_ctl("set physical_port %s vlan_stats:%s=@stats --\ - --id=@stats create logical_binding_stats packets_from_local=0"\ - % (pp_name, vlan_)) + vtep_ctl("set physical_port %s vlan_stats:%s=@stats -- " + "--id=@stats create logical_binding_stats packets_from_local=0" + % (pp_name, vlan_)) ls.add_lbinding(lbinding) Bindings[binding] = ls.name diff --git a/xenserver/usr_share_openvswitch_scripts_ovs-xapi-sync b/xenserver/usr_share_openvswitch_scripts_ovs-xapi-sync index 583356c36..1b8d0a622 100755 --- a/xenserver/usr_share_openvswitch_scripts_ovs-xapi-sync +++ b/xenserver/usr_share_openvswitch_scripts_ovs-xapi-sync @@ -267,7 +267,7 @@ def main(): while True: unixctl_server.run() if exiting: - break; + break idl.run() if not xapi_down and not flush_cache and seqno == idl.change_seqno: