diff options
Diffstat (limited to 'gitautodeploy')
-rw-r--r-- | gitautodeploy/parsers/bitbucket.py | 2 | ||||
-rw-r--r-- | gitautodeploy/parsers/common.py (renamed from gitautodeploy/parsers/WebhookRequestParser.py) | 0 | ||||
-rw-r--r-- | gitautodeploy/parsers/generic.py | 2 | ||||
-rw-r--r-- | gitautodeploy/parsers/github.py | 2 | ||||
-rw-r--r-- | gitautodeploy/parsers/gitlab.py | 2 | ||||
-rw-r--r-- | gitautodeploy/parsers/gitlabci.py | 2 |
6 files changed, 5 insertions, 5 deletions
diff --git a/gitautodeploy/parsers/bitbucket.py b/gitautodeploy/parsers/bitbucket.py index b02a6ac..791b491 100644 --- a/gitautodeploy/parsers/bitbucket.py +++ b/gitautodeploy/parsers/bitbucket.py @@ -1,4 +1,4 @@ -from WebhookRequestParser import WebhookRequestParser +from common import WebhookRequestParser class BitBucketRequestParser(WebhookRequestParser): diff --git a/gitautodeploy/parsers/WebhookRequestParser.py b/gitautodeploy/parsers/common.py index 42cbbdd..42cbbdd 100644 --- a/gitautodeploy/parsers/WebhookRequestParser.py +++ b/gitautodeploy/parsers/common.py diff --git a/gitautodeploy/parsers/generic.py b/gitautodeploy/parsers/generic.py index cb83a71..7c7c7f5 100644 --- a/gitautodeploy/parsers/generic.py +++ b/gitautodeploy/parsers/generic.py @@ -1,4 +1,4 @@ -from WebhookRequestParser import WebhookRequestParser +from common import WebhookRequestParser class GenericRequestParser(WebhookRequestParser): diff --git a/gitautodeploy/parsers/github.py b/gitautodeploy/parsers/github.py index bd20b98..028663d 100644 --- a/gitautodeploy/parsers/github.py +++ b/gitautodeploy/parsers/github.py @@ -1,4 +1,4 @@ -from WebhookRequestParser import WebhookRequestParser +from common import WebhookRequestParser class GitHubRequestParser(WebhookRequestParser): diff --git a/gitautodeploy/parsers/gitlab.py b/gitautodeploy/parsers/gitlab.py index 7a8e374..6ebdb6f 100644 --- a/gitautodeploy/parsers/gitlab.py +++ b/gitautodeploy/parsers/gitlab.py @@ -1,4 +1,4 @@ -from WebhookRequestParser import WebhookRequestParser +from common import WebhookRequestParser class GitLabRequestParser(WebhookRequestParser): diff --git a/gitautodeploy/parsers/gitlabci.py b/gitautodeploy/parsers/gitlabci.py index 9fc66be..6b5e3ca 100644 --- a/gitautodeploy/parsers/gitlabci.py +++ b/gitautodeploy/parsers/gitlabci.py @@ -1 +1 @@ -from WebhookRequestParser import WebhookRequestParser +from common import WebhookRequestParser |