aboutsummaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastergui/widgets.py
diff options
context:
space:
mode:
authorEd Bartosh <ed.bartosh@linux.intel.com>2016-05-30 16:10:59 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-06-02 08:24:05 +0100
commit2b362f63428bdd221d82141bb1615ee8950e40b3 (patch)
tree109f6da6a09317927c2adbd9a16dbc5bf9078f5c /bitbake/lib/toaster/toastergui/widgets.py
parent2de58c97a5e7d9c0687f66da291c6dc3d37a755a (diff)
downloadopenembedded-core-contrib-2b362f63428bdd221d82141bb1615ee8950e40b3.tar.gz
bitbake: toaster: fix urllib imports
Some functions have been moved from urllib to urllib.parse in python 3. Modifying the code to import unquote, urlencode and unquote_plus from urllib.parse if import from urllib fails should make it working on both python 2 and python 3. (Bitbake rev: b91aa29fa20befd9841678a727bb91100363518f) Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/toaster/toastergui/widgets.py')
-rw-r--r--bitbake/lib/toaster/toastergui/widgets.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/bitbake/lib/toaster/toastergui/widgets.py b/bitbake/lib/toaster/toastergui/widgets.py
index 19850fbcf4..551c33cff7 100644
--- a/bitbake/lib/toaster/toastergui/widgets.py
+++ b/bitbake/lib/toaster/toastergui/widgets.py
@@ -38,7 +38,11 @@ import json
import collections
import operator
import re
-import urllib
+
+try:
+ from urllib import unquote_plus
+except ImportError:
+ from urllib.parse import unquote_plus
import logging
logger = logging.getLogger("toaster")