1
0
mirror of https://github.com/projectatomic/atomic.git synced 2026-02-06 12:45:57 +01:00

Merge pull request #324 from rhatdan/python3

Fixes for running atomic on python3
This commit is contained in:
Daniel J Walsh
2016-03-10 11:44:30 -05:00
2 changed files with 2 additions and 2 deletions

View File

@@ -7,7 +7,7 @@ import select
from os import isatty
from operator import itemgetter
import requests
from atomic import NoDockerDaemon
from .util import NoDockerDaemon
class Top(Atomic):

View File

@@ -5,7 +5,7 @@ PROFILEDIR ?= $(DESTDIR)/etc/profile.d
PYTHON ?= /usr/bin/python
PYLINT ?= /usr/bin/pylint
GO_MD2MAN ?= /usr/bin/go-md2man
PYTHONSITELIB=$(shell $(PYTHON) -c "from distutils.sysconfig import get_python_lib; print get_python_lib(0)")
PYTHONSITELIB=$(shell $(PYTHON) -c "from distutils.sysconfig import get_python_lib; print(get_python_lib(0))")
VERSION=$(shell $(PYTHON) setup.py --version)
.PHONY: all