Fix another base64 python3 issue

This is to address another usage of base64 that was missed from
commit 794c47f3b8823e97a0f019064e4b74a5ee204d04

Change-Id: I9bbff8084d82928deeafa6a55c487ed0f665b470
This commit is contained in:
Andy Botting 2020-10-30 14:27:15 +11:00
parent 3c41b4f1b9
commit 7d481ad60e
1 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
import base64
import git
import os
import re
@ -26,6 +25,7 @@ from oslo_utils import encodeutils
import urllib
from muranoagent.common import config
from muranoagent import util
CONF = config.CONF
LOG = logging.getLogger(__name__)
@ -84,7 +84,7 @@ class FilesManager(object):
if body_type == 'Text':
out_file.write(filedef['Body'])
elif body_type == 'Base64':
out_file.write(base64.b64decode(filedef['Body']))
out_file.write(util.b64decode(filedef['Body']))
self._fetched_files[file_id] = out_path
return out_path