aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAaron Bentley <abentley@panoramicfeedback.com>2006-02-03 16:56:41 -0500
committerAaron Bentley <abentley@panoramicfeedback.com>2006-02-03 16:56:41 -0500
commit4b8bcd3818ee319d3ec5086b89083beb0501c784 (patch)
treed01e596ba31fffe4a8df821e1e5d0c0494c0f133
parent3438bfc7d5e93ce1827e105964cb21cb77ce5776 (diff)
downloadbugseverywhere-4b8bcd3818ee319d3ec5086b89083beb0501c784.tar.gz
Added compatibility functions for commit to arch, no_rcs
-rw-r--r--libbe/arch.py9
-rw-r--r--libbe/no_rcs.py9
2 files changed, 18 insertions, 0 deletions
diff --git a/libbe/arch.py b/libbe/arch.py
index 7edba37..b7c8a0b 100644
--- a/libbe/arch.py
+++ b/libbe/arch.py
@@ -172,5 +172,14 @@ def detect(path):
old_path = path
path = os.path.join('..', path)
+def precommit(directory):
+ pass
+
+def commit(directory, summary, body=None):
+ pass
+
+def postcommit(directory):
+ pass
+
name = "Arch"
diff --git a/libbe/no_rcs.py b/libbe/no_rcs.py
index 7e070b3..1b3b005 100644
--- a/libbe/no_rcs.py
+++ b/libbe/no_rcs.py
@@ -39,4 +39,13 @@ def detect(path):
"""Compatibility function"""
return True
+def precommit(directory):
+ pass
+
+def commit(directory, summary, body=None):
+ pass
+
+def postcommit(directory):
+ pass
+
name = "None"