aboutsummaryrefslogtreecommitdiffstats
path: root/libbe/storage/vcs/base.py
diff options
context:
space:
mode:
authorMatthew Fernandez <matthew.fernandez@gmail.com>2017-10-25 17:46:05 -0700
committerMatthew Fernandez <matthew.fernandez@gmail.com>2017-10-25 17:46:05 -0700
commitfc6d278bedc485751a5491784f104539f18e044c (patch)
treec175e99e42831034988f7bdc92f6b2e39a45a91a /libbe/storage/vcs/base.py
parent8866e4afc744789c75c8a2df46f9299b6d1a1ea6 (diff)
downloadbugseverywhere-fc6d278bedc485751a5491784f104539f18e044c.tar.gz
remove support for Arch
The last release of GNU Arch was in 2006, over ten years ago at time of writing. GNU suggests users should migrate repositories to Bazaar. This commit removes all support for Arch to reduce ongoing maintenance overheads.
Diffstat (limited to 'libbe/storage/vcs/base.py')
-rw-r--r--libbe/storage/vcs/base.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/libbe/storage/vcs/base.py b/libbe/storage/vcs/base.py
index 671df43..e9995b0 100644
--- a/libbe/storage/vcs/base.py
+++ b/libbe/storage/vcs/base.py
@@ -50,7 +50,7 @@ if libbe.TESTING == True:
import libbe.ui.util.user
-VCS_ORDER = ['arch', 'bzr', 'darcs', 'git', 'hg', 'monotone']
+VCS_ORDER = ['bzr', 'darcs', 'git', 'hg', 'monotone']
"""List VCS modules in order of preference.
Don't list this module, it is implicitly last.
@@ -436,7 +436,7 @@ class VCS (libbe.storage.base.VersionedStorage):
otherwise. You only need to set this if the VCS goes about
dumping VCS-specific files into the .be directory.
- If you do need to implement this method (e.g. Arch), set
+ If you do need to implement this method, set
self.interspersed_vcs_files = True
"""
assert self.interspersed_vcs_files == False