Skip to content
Snippets Groups Projects
Commit 8c58098d3026 authored by Vincent Hatakeyama's avatar Vincent Hatakeyama
Browse files

:pencil: improve python 3 compatibility

parent ebcba8ec9194
No related branches found
No related tags found
No related merge requests found
......@@ -11,7 +11,7 @@
from subprocess import call
import sys
import ConfigParser
from six.moves import configparser
import docker # apt python-docker (1.9) or pip install docker
......@@ -101,7 +101,7 @@
dev = nmspc.dev
push = nmspc.push
c = ConfigParser.ConfigParser()
c = configparser.ConfigParser()
if not os.path.exists(setup_path):
logging.fatal('Missing %s', setup_path)
return 12
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment