From fa4275bbc0098124f3b44e0eafae83692db778b9 Mon Sep 17 00:00:00 2001 From: Ed Bartosh Date: Thu, 19 May 2016 12:28:12 +0300 Subject: scripts: Rename ConfigParser -> configparser for python3 The ConfigParser API was renamed to configparser in python 3. Renamed ConfigParser -> configparser in scripts/ to make the code working in python 3. (From OE-Core rev: de6e98f272e623ce72e724e66920eecf10cb2d41) Signed-off-by: Ed Bartosh Signed-off-by: Richard Purdie --- scripts/devtool | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'scripts/devtool') diff --git a/scripts/devtool b/scripts/devtool index 9ac6e798d2..4dbb527bc7 100755 --- a/scripts/devtool +++ b/scripts/devtool @@ -22,7 +22,7 @@ import os import argparse import glob import re -import ConfigParser +import configparser import subprocess import logging @@ -51,12 +51,12 @@ class ConfigHandler(object): def __init__(self, filename): self.config_file = filename - self.config_obj = ConfigParser.SafeConfigParser() + self.config_obj = configparser.SafeConfigParser() def get(self, section, option, default=None): try: ret = self.config_obj.get(section, option) - except (ConfigParser.NoOptionError, ConfigParser.NoSectionError): + except (configparser.NoOptionError, configparser.NoSectionError): if default != None: ret = default else: -- cgit v1.2.3-54-g00ecf