Fix get-modulename.py for python3

ConfigParser got renamed in Python 3 to configparser, update
get-modulename.py so that it now runs under python3.

Change-Id: Ic32b22d537ce43fb5382fdad4b550061d9060c6e
This commit is contained in:
Andreas Jaeger 2020-01-06 17:35:11 +01:00
parent 38aabd672c
commit ffa2095870
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@
from __future__ import print_function
import argparse
import ConfigParser as configparser
import configparser
import sys