Fix sugar-install-bundle - Python 2
On Python 2 is seen
ConfigParser instance has no attribute 'read_string'
Regression introduced by 2018c930ad
Fixes https://github.com/sugarlabs/sugar-toolkit-gtk3/issues/438
Signed-off-by: James Cameron <quozl@laptop.org>
This commit is contained in:
parent
5b9f36db06
commit
39b12bbf7f
@ -21,6 +21,7 @@ UNSTABLE.
|
|||||||
"""
|
"""
|
||||||
|
|
||||||
from six.moves.configparser import ConfigParser, ParsingError
|
from six.moves.configparser import ConfigParser, ParsingError
|
||||||
|
import six
|
||||||
from locale import normalize
|
from locale import normalize
|
||||||
import os
|
import os
|
||||||
import shutil
|
import shutil
|
||||||
@ -129,7 +130,10 @@ class ActivityBundle(Bundle):
|
|||||||
|
|
||||||
def _parse_info(self, info_file):
|
def _parse_info(self, info_file):
|
||||||
cp = ConfigParser()
|
cp = ConfigParser()
|
||||||
cp.read_string(info_file.read().decode())
|
if six.PY2:
|
||||||
|
cp.readfp(info_file)
|
||||||
|
else:
|
||||||
|
cp.read_string(info_file.read().decode())
|
||||||
|
|
||||||
section = 'Activity'
|
section = 'Activity'
|
||||||
|
|
||||||
@ -251,7 +255,10 @@ class ActivityBundle(Bundle):
|
|||||||
def _parse_linfo(self, linfo_file):
|
def _parse_linfo(self, linfo_file):
|
||||||
cp = ConfigParser()
|
cp = ConfigParser()
|
||||||
try:
|
try:
|
||||||
cp.read_string(linfo_file.read().decode())
|
if six.PY2:
|
||||||
|
cp.readfp(linfo_file)
|
||||||
|
else:
|
||||||
|
cp.read_string(linfo_file.read().decode())
|
||||||
except ParsingError as e:
|
except ParsingError as e:
|
||||||
logging.exception('Exception reading linfo file: %s', e)
|
logging.exception('Exception reading linfo file: %s', e)
|
||||||
return
|
return
|
||||||
|
Loading…
Reference in New Issue
Block a user