diff options
author | Aaron Bentley <abentley@panoramicfeedback.com> | 2006-02-03 16:56:41 -0500 |
---|---|---|
committer | Aaron Bentley <abentley@panoramicfeedback.com> | 2006-02-03 16:56:41 -0500 |
commit | 4b8bcd3818ee319d3ec5086b89083beb0501c784 (patch) | |
tree | d01e596ba31fffe4a8df821e1e5d0c0494c0f133 /libbe/arch.py | |
parent | 3438bfc7d5e93ce1827e105964cb21cb77ce5776 (diff) | |
download | bugseverywhere-4b8bcd3818ee319d3ec5086b89083beb0501c784.tar.gz |
Added compatibility functions for commit to arch, no_rcs
Diffstat (limited to 'libbe/arch.py')
-rw-r--r-- | libbe/arch.py | 9 |
1 files changed, 9 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" |