Fix py3 compatibility

the ini.get() thing is weird between python2 and python3 but it seems
that the fourth argument is unnecessary and not implemented in py3
anyway.

Change-Id: Ic42c3ca144ee9dd1aab372bc7d70bdca34cb7a93
This commit is contained in:
Chmouel Boudjnah 2014-10-02 15:18:40 +02:00
parent 92fad2c7a7
commit 52209d8f05
1 changed files with 5 additions and 3 deletions

View File

@ -13,9 +13,11 @@
# See the License for the specific language governing permissions and
# limitations under the License.
import ConfigParser
import os
from six.moves.configparser import ConfigParser
import dox.config.base as base
@ -40,7 +42,7 @@ class ToxIni(base.ConfigBase):
def _open_tox_ini(self):
if self._ini is None:
self._ini = ConfigParser.ConfigParser()
self._ini = ConfigParser()
self._ini.read(self.tox_ini_file)
return self._ini
@ -53,7 +55,7 @@ class ToxIni(base.ConfigBase):
def get_images(self):
ini = self._open_tox_ini()
if ini.has_option('docker', 'images'):
return ini.get('docker', 'images', '').split(',')
return ini.get('docker', 'images').split(',')
def get_commands(self, extra_args, section='testenv'):
"""Get commands to run from the config file.