summaryrefslogtreecommitdiff
path: root/xenserver
diff options
context:
space:
mode:
authorxurong00037997 <xu.rong@zte.com.cn>2017-02-24 10:03:26 +0800
committerBen Pfaff <blp@ovn.org>2017-03-08 21:11:48 -0800
commit6c7050b59c50f060492e47126ca43dc6113e5860 (patch)
treea4ef990cc35e4183087580cbc9663da6463ee19f /xenserver
parent5575908b013b85189aac50c3672c4111676d5116 (diff)
downloadopenvswitch-6c7050b59c50f060492e47126ca43dc6113e5860.tar.gz
Adapt to flake8-import-order
https://review.openstack.org/#/c/432906/ flake8-import-order adds 3 new flake8 warnings: I100: Your import statements are in the wrong order. I101: The names in your from import are in the wrong order. I201: Missing newline between sections or imports. Signed-off-by: Ben Pfaff <blp@ovn.org>
Diffstat (limited to 'xenserver')
-rwxr-xr-xxenserver/usr_share_openvswitch_scripts_ovs-xapi-sync3
1 files changed, 2 insertions, 1 deletions
diff --git a/xenserver/usr_share_openvswitch_scripts_ovs-xapi-sync b/xenserver/usr_share_openvswitch_scripts_ovs-xapi-sync
index a776c0084..ecd6f6d70 100755
--- a/xenserver/usr_share_openvswitch_scripts_ovs-xapi-sync
+++ b/xenserver/usr_share_openvswitch_scripts_ovs-xapi-sync
@@ -29,11 +29,12 @@ import time
import XenAPI
-import ovs.dirs
import ovs.daemon
import ovs.db.idl
+import ovs.dirs
import ovs.unixctl
import ovs.unixctl.server
+
import six
vlog = ovs.vlog.Vlog("ovs-xapi-sync")