Disable installing PYO and PYC. Fix install paths.

Installing PYO and PYC does not work so disable this. Move the
Python check to the top level and have a single place.

Fix the install paths a revert the 'from . import' changes. This
is resolved by installing into the correct paths.
This commit is contained in:
Chris Johns
2016-02-19 11:26:51 +11:00
parent 4351ae5eff
commit de1beea245
12 changed files with 41 additions and 26 deletions

View File

@@ -31,11 +31,11 @@
import os
from . import error
from . import execute
from . import log
from . import options
from . import path
import error
import execute
import log
import options
import path
class repo:
"""An object to manage a git repo."""