Comment 15 for bug 1618666

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to tempest (master)

Reviewed: https://review.openstack.org/370542
Committed: https://git.openstack.org/cgit/openstack/tempest/commit/?id=8254a3f54d757927d159b3edc4f4f982bd8d6138
Submitter: Jenkins
Branch: master

commit 8254a3f54d757927d159b3edc4f4f982bd8d6138
Author: Janonymous <email address hidden>
Date: Thu Sep 15 10:38:48 2016 +0530

    Use ConfigParser instead of SafeConfigParser

    SafeConfigParser supports interpolation on top of ConfigParser in Python 2,
    and SafeConfigParser is deprecated in Python 3.2 and log warning
    like " DeprecationWarning: The SafeConfigParser class has been renamed to
    ConfigParser in Python 3.2. This alias will be removed in future versions.
    Use ConfigParser directly instead."
    So we can use ConfigParser if we don't need interpolation.

    Change-Id: If210bd1322df96c0c8aea1f257148dc46affb422
    Closes-Bug: #1618666