Use six.moves.xmlrpc.client instead of xmlrpclib

The module is renamed to xmlrpc.client in Python 3.

Reviewed-By: David Kupka <dkupka@redhat.com>
Reviewed-By: Jan Cholasta <jcholast@redhat.com>
Reviewed-By: Martin Basti <mbasti@redhat.com>
This commit is contained in:
Petr Viktorin
2015-09-14 13:22:38 +02:00
committed by Jan Cholasta
parent 70b37a956c
commit ad2bc94725
9 changed files with 44 additions and 37 deletions

View File

@@ -103,7 +103,7 @@ import re
import decimal
import base64
import datetime
from xmlrpclib import MAXINT, MININT
from six.moves.xmlrpc_client import MAXINT, MININT
from types import NoneType
import encodings.idna