mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Use six.moves to import configparser in cloudforms script (#54465)
This commit is contained in:
parent
b27c4caa49
commit
d930eaf7d8
1 changed files with 1 additions and 1 deletions
|
@ -22,7 +22,7 @@
|
||||||
|
|
||||||
from __future__ import print_function
|
from __future__ import print_function
|
||||||
import argparse
|
import argparse
|
||||||
import ConfigParser
|
from ansible.module_utils.six.moves import configparser as ConfigParser
|
||||||
import os
|
import os
|
||||||
import re
|
import re
|
||||||
from time import time
|
from time import time
|
||||||
|
|
Loading…
Reference in a new issue