summaryrefslogtreecommitdiff
path: root/vtep
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 /vtep
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 'vtep')
-rwxr-xr-xvtep/ovs-vtep7
1 files changed, 4 insertions, 3 deletions
diff --git a/vtep/ovs-vtep b/vtep/ovs-vtep
index fd652d424..5153b3b8e 100755
--- a/vtep/ovs-vtep
+++ b/vtep/ovs-vtep
@@ -23,13 +23,14 @@ import subprocess
import sys
import time
-import ovs.dirs
-import ovs.util
import ovs.daemon
+import ovs.dirs
import ovs.unixctl.server
+import ovs.util
import ovs.vlog
-from six.moves import range
+
import six
+from six.moves import range
VERSION = "0.99"