diff options
author | Konstantin Ryabitsev <konstantin@linuxfoundation.org> | 2020-04-24 12:17:48 -0400 |
---|---|---|
committer | Konstantin Ryabitsev <konstantin@linuxfoundation.org> | 2020-04-24 12:17:48 -0400 |
commit | 94b241296765404453a2e087d9a888323eb6bbe0 (patch) | |
tree | 575e571b35e9dd19da96733fdebe6c962e61b192 | |
parent | 444f0564fbe0d25f5cad52cb6899b2c2ad9f1cf7 (diff) | |
download | b4-94b241296765404453a2e087d9a888323eb6bbe0.tar.gz |
Use "local tree" instead of "undefined"
This is our fail-through treename, so if we weren't able to figure out
anything about it, then call it a "local tree" instead of "undefined".
Signed-off-by: Konstantin Ryabitsev <konstantin@linuxfoundation.org>
-rw-r--r-- | b4/ty.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -243,7 +243,7 @@ def set_branch_details(gitdir, branch, jsondata, config): # Something went wrong... just use the whole URL jsondata['treename'] = binfo['url'] else: - jsondata['treename'] = 'undefined' + jsondata['treename'] = 'local tree' return jsondata, config |