summaryrefslogtreecommitdiffstats
path: root/recipes-networking/openvswitch/openvswitch-git/0007-Python3-compatibility-unicode-to-str.patch
diff options
context:
space:
mode:
Diffstat (limited to 'recipes-networking/openvswitch/openvswitch-git/0007-Python3-compatibility-unicode-to-str.patch')
-rw-r--r--recipes-networking/openvswitch/openvswitch-git/0007-Python3-compatibility-unicode-to-str.patch10
1 files changed, 4 insertions, 6 deletions
diff --git a/recipes-networking/openvswitch/openvswitch-git/0007-Python3-compatibility-unicode-to-str.patch b/recipes-networking/openvswitch/openvswitch-git/0007-Python3-compatibility-unicode-to-str.patch
index faa32b73..753490f8 100644
--- a/recipes-networking/openvswitch/openvswitch-git/0007-Python3-compatibility-unicode-to-str.patch
+++ b/recipes-networking/openvswitch/openvswitch-git/0007-Python3-compatibility-unicode-to-str.patch
@@ -1,7 +1,7 @@
1From 2fe58f87b00d0ec24d6997930d0bcdb130c84396 Mon Sep 17 00:00:00 2001 1From c78b39ae9ba6337210d6a9e4ccc4753cb1c3b48f Mon Sep 17 00:00:00 2001
2From: Jason Wessel <jason.wessel@windriver.com> 2From: Jason Wessel <jason.wessel@windriver.com>
3Date: Thu, 29 Jun 2017 20:33:23 -0700 3Date: Thu, 29 Jun 2017 20:33:23 -0700
4Subject: [PATCH 7/8] Python3 compatibility: unicode to str 4Subject: [PATCH] Python3 compatibility: unicode to str
5 5
6Commit 7430959d4ad17db89b8387c3aef58c8b230cad10 from 6Commit 7430959d4ad17db89b8387c3aef58c8b230cad10 from
7https://github.com/openvswitch/ovs.git 7https://github.com/openvswitch/ovs.git
@@ -19,12 +19,13 @@ type because it doesn't exist.
19 19
20Signed-off-by: Jason Wessel <jason.wessel@windriver.com> 20Signed-off-by: Jason Wessel <jason.wessel@windriver.com>
21Signed-off-by: Ben Pfaff <blp@ovn.org> 21Signed-off-by: Ben Pfaff <blp@ovn.org>
22
22--- 23---
23 ovsdb/ovsdb-doc | 12 +++++++++--- 24 ovsdb/ovsdb-doc | 12 +++++++++---
24 1 file changed, 9 insertions(+), 3 deletions(-) 25 1 file changed, 9 insertions(+), 3 deletions(-)
25 26
26diff --git a/ovsdb/ovsdb-doc b/ovsdb/ovsdb-doc 27diff --git a/ovsdb/ovsdb-doc b/ovsdb/ovsdb-doc
27index 918e88a..406c293 100755 28index 9448713..d55c6e6 100755
28--- a/ovsdb/ovsdb-doc 29--- a/ovsdb/ovsdb-doc
29+++ b/ovsdb/ovsdb-doc 30+++ b/ovsdb/ovsdb-doc
30@@ -65,9 +65,15 @@ def columnGroupToNroff(table, groupXml, documented_columns): 31@@ -65,9 +65,15 @@ def columnGroupToNroff(table, groupXml, documented_columns):
@@ -46,6 +47,3 @@ index 918e88a..406c293 100755
46 type_ = ovs.db.types.BaseType.from_json(type_json) 47 type_ = ovs.db.types.BaseType.from_json(type_json)
47 else: 48 else:
48 type_ = column.type.value 49 type_ = column.type.value
49--
502.5.0
51