diff options
author | Oliver Poignant <oliver@poignant.se> | 2017-01-03 17:19:25 +0100 |
---|---|---|
committer | Oliver Poignant <oliver@poignant.se> | 2017-01-03 17:19:25 +0100 |
commit | f48093c4415c04b070886c19bdc2fcc7c12fcbd0 (patch) | |
tree | 93ea57bc3064fd10d37b9b8d3db07a91b57c499a /gitautodeploy/wrappers/git.py | |
parent | 644d98ca85730bf2abb494e45e35b95bc370648b (diff) | |
download | Git-Auto-Deploy-f48093c4415c04b070886c19bdc2fcc7c12fcbd0.zip Git-Auto-Deploy-f48093c4415c04b070886c19bdc2fcc7c12fcbd0.tar.gz Git-Auto-Deploy-f48093c4415c04b070886c19bdc2fcc7c12fcbd0.tar.bz2 |
Compatibility with python >= 3.4
Diffstat (limited to 'gitautodeploy/wrappers/git.py')
-rw-r--r-- | gitautodeploy/wrappers/git.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gitautodeploy/wrappers/git.py b/gitautodeploy/wrappers/git.py index 910e9f6..1f7fe23 100644 --- a/gitautodeploy/wrappers/git.py +++ b/gitautodeploy/wrappers/git.py @@ -9,7 +9,7 @@ class GitWrapper(): def init(repo_config): """Init remote url of the repo from the git server""" import logging - from process import ProcessWrapper + from .process import ProcessWrapper import os import platform @@ -49,7 +49,7 @@ class GitWrapper(): def pull(repo_config): """Pulls the latest version of the repo from the git server""" import logging - from process import ProcessWrapper + from .process import ProcessWrapper import os import platform @@ -93,7 +93,7 @@ class GitWrapper(): def clone(repo_config): """Clones the latest version of the repo from the git server""" import logging - from process import ProcessWrapper + from .process import ProcessWrapper import os import platform @@ -127,7 +127,7 @@ class GitWrapper(): @staticmethod def deploy(repo_config): """Executes any supplied post-pull deploy command""" - from process import ProcessWrapper + from .process import ProcessWrapper import logging logger = logging.getLogger() |