summaryrefslogtreecommitdiffstats
path: root/gitautodeploy/parsers
diff options
context:
space:
mode:
authorOliver Poignant <oliver@poignant.se>2017-01-03 17:19:25 +0100
committerOliver Poignant <oliver@poignant.se>2017-01-03 17:19:25 +0100
commitf48093c4415c04b070886c19bdc2fcc7c12fcbd0 (patch)
tree93ea57bc3064fd10d37b9b8d3db07a91b57c499a /gitautodeploy/parsers
parent644d98ca85730bf2abb494e45e35b95bc370648b (diff)
downloadGit-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')
-rw-r--r--gitautodeploy/parsers/__init__.py12
-rw-r--r--gitautodeploy/parsers/bitbucket.py2
-rw-r--r--gitautodeploy/parsers/coding.py2
-rw-r--r--gitautodeploy/parsers/generic.py2
-rw-r--r--gitautodeploy/parsers/github.py2
-rw-r--r--gitautodeploy/parsers/gitlab.py2
-rw-r--r--gitautodeploy/parsers/gitlabci.py2
7 files changed, 12 insertions, 12 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
diff --git a/gitautodeploy/parsers/bitbucket.py b/gitautodeploy/parsers/bitbucket.py
index 80899fd..b80f6aa 100644
--- a/gitautodeploy/parsers/bitbucket.py
+++ b/gitautodeploy/parsers/bitbucket.py
@@ -1,4 +1,4 @@
-from common import WebhookRequestParser
+from .common import WebhookRequestParser
class BitBucketRequestParser(WebhookRequestParser):
diff --git a/gitautodeploy/parsers/coding.py b/gitautodeploy/parsers/coding.py
index 889c3ee..3d114d4 100644
--- a/gitautodeploy/parsers/coding.py
+++ b/gitautodeploy/parsers/coding.py
@@ -1,4 +1,4 @@
-from common import WebhookRequestParser
+from .common import WebhookRequestParser
class CodingRequestParser(WebhookRequestParser):
diff --git a/gitautodeploy/parsers/generic.py b/gitautodeploy/parsers/generic.py
index a93e90b..c71bced 100644
--- a/gitautodeploy/parsers/generic.py
+++ b/gitautodeploy/parsers/generic.py
@@ -1,4 +1,4 @@
-from common import WebhookRequestParser
+from .common import WebhookRequestParser
class GenericRequestParser(WebhookRequestParser):
diff --git a/gitautodeploy/parsers/github.py b/gitautodeploy/parsers/github.py
index bede7bb..5f2ba5d 100644
--- a/gitautodeploy/parsers/github.py
+++ b/gitautodeploy/parsers/github.py
@@ -1,4 +1,4 @@
-from common import WebhookRequestParser
+from .common import WebhookRequestParser
class GitHubRequestParser(WebhookRequestParser):
diff --git a/gitautodeploy/parsers/gitlab.py b/gitautodeploy/parsers/gitlab.py
index 5d0d348..6767907 100644
--- a/gitautodeploy/parsers/gitlab.py
+++ b/gitautodeploy/parsers/gitlab.py
@@ -1,4 +1,4 @@
-from common import WebhookRequestParser
+from .common import WebhookRequestParser
class GitLabRequestParser(WebhookRequestParser):
diff --git a/gitautodeploy/parsers/gitlabci.py b/gitautodeploy/parsers/gitlabci.py
index 22af596..eebf2bd 100644
--- a/gitautodeploy/parsers/gitlabci.py
+++ b/gitautodeploy/parsers/gitlabci.py
@@ -1,4 +1,4 @@
-from common import WebhookRequestParser
+from .common import WebhookRequestParser
class GitLabCIRequestParser(WebhookRequestParser):