Merge "Switch to six for configparser"

This commit is contained in:
Jenkins 2016-06-02 07:19:28 +00:00 committed by Gerrit Code Review
commit d0520c2754
2 changed files with 4 additions and 1 deletions

View File

@ -13,7 +13,6 @@
# under the License.
import argparse
import ConfigParser
import daemon
import extras
import gear
@ -24,6 +23,9 @@ import pbr.version
import signal
import sys
from six.moves import configparser as ConfigParser
pid_file_module = extras.try_imports(['daemon.pidlockfile', 'daemon.pidfile'])

View File

@ -1,3 +1,4 @@
pbr>=0.6,!=0.7,<1.0
six>=1.5.2
extras
python-daemon>=2.0.4