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/parsers/__init__.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/parsers/__init__.py')
-rw-r--r-- | gitautodeploy/parsers/__init__.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gitautodeploy/parsers/__init__.py b/gitautodeploy/parsers/__init__.py index c993454..cecd1c7 100644 --- a/gitautodeploy/parsers/__init__.py +++ b/gitautodeploy/parsers/__init__.py @@ -1,6 +1,6 @@ -from bitbucket import BitBucketRequestParser -from github import GitHubRequestParser -from gitlab import GitLabRequestParser -from gitlabci import GitLabCIRequestParser -from generic import GenericRequestParser -from coding import CodingRequestParser
\ No newline at end of file +from .bitbucket import BitBucketRequestParser +from .github import GitHubRequestParser +from .gitlab import GitLabRequestParser +from .gitlabci import GitLabCIRequestParser +from .generic import GenericRequestParser +from .coding import CodingRequestParser
\ No newline at end of file |