aboutsummaryrefslogtreecommitdiffstats
path: root/libbe/arch.py
diff options
context:
space:
mode:
Diffstat (limited to 'libbe/arch.py')
-rw-r--r--libbe/arch.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/libbe/arch.py b/libbe/arch.py
index b6d01e1..a2d6bde 100644
--- a/libbe/arch.py
+++ b/libbe/arch.py
@@ -26,9 +26,9 @@ import config
from beuuid import uuid_gen
from rcs import RCS, RCStestCase, CommandError
-client = config.get_val("arch_client")
-if client is None:
- client = "tla"
+DEFAULT_CLIENT = "tla"
+
+client = config.get_val("arch_client", default=DEFAULT_CLIENT)
def new():
return Arch()