Skip to content

Commit

Permalink
Use ConfigParser from six.moves everywhere.
Browse files Browse the repository at this point in the history
  • Loading branch information
Kami committed Feb 10, 2017
1 parent c8e08f6 commit 4a9be54
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion st2client/st2client/commands/auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,12 @@
# See the License for the specific language governing permissions and
# limitations under the License.

from six.moves.configparser import ConfigParser
import getpass
import json
import logging

from six.moves.configparser import ConfigParser

from st2client.base import BaseCLIApp
from st2client import config_parser
from st2client import models
Expand Down
2 changes: 1 addition & 1 deletion st2debug/st2debug/processors.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

import os

from ConfigParser import ConfigParser
from six.moves.configparser import ConfigParser

__all__ = [
'process_st2_config',
Expand Down

0 comments on commit 4a9be54

Please sign in to comment.