summaryrefslogtreecommitdiffstats
path: root/gitautodeploy/parsers
diff options
context:
space:
mode:
authorOliver Poignant <oliver@poignant.se>2016-03-06 23:08:58 +0100
committerOliver Poignant <oliver@poignant.se>2016-03-06 23:08:58 +0100
commit9bb81f8c8e75278db86868575fc47394b0541eef (patch)
treed9b2247df0b2bd430e2c59ccc49d9a5774d7e183 /gitautodeploy/parsers
parent92661088c7a61f3f53c4aa56bc5f7257a6487075 (diff)
downloadGit-Auto-Deploy-9bb81f8c8e75278db86868575fc47394b0541eef.zip
Git-Auto-Deploy-9bb81f8c8e75278db86868575fc47394b0541eef.tar.gz
Git-Auto-Deploy-9bb81f8c8e75278db86868575fc47394b0541eef.tar.bz2
Store parent in common.py
Diffstat (limited to 'gitautodeploy/parsers')
-rw-r--r--gitautodeploy/parsers/bitbucket.py2
-rw-r--r--gitautodeploy/parsers/common.py (renamed from gitautodeploy/parsers/WebhookRequestParser.py)0
-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
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