diff options
author | Konstantin Ryabitsev <konstantin@linuxfoundation.org> | 2022-07-28 12:20:04 -0400 |
---|---|---|
committer | Konstantin Ryabitsev <konstantin@linuxfoundation.org> | 2022-07-28 12:20:04 -0400 |
commit | 49460b80d7d4f52c3de9f00032e3a1525d38d738 (patch) | |
tree | 01a0755b547d64fd37228d09f4a55f0c9bb6015c | |
parent | 0262a70bd881f1c8370a07fcae725e96ea3a2a7c (diff) | |
download | b4-49460b80d7d4f52c3de9f00032e3a1525d38d738.tar.gz |
ez: fix typos on logger calls
Fixes types in logger calls.
Reported-by: Maxime Ripard <maxime@cerno.tech>
Signed-off-by: Konstantin Ryabitsev <konstantin@linuxfoundation.org>
-rw-r--r-- | b4/ez.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -148,7 +148,7 @@ def get_base_forkpoint(basebranch: str) -> Tuple[str, int]: gitargs = ['rev-parse', '--verify', '--quiet', basebranch] ecode, out = b4.git_run_command(None, gitargs) if ecode > 0: - logger.crtitical('CRITICAL: Could not find branch with this name: %s', basebranch) + logger.critical('CRITICAL: Could not find branch with this name: %s', basebranch) raise RuntimeError('Branch %s not found', basebranch) # Find merge-base with that branch mybranch = b4.git_get_current_branch() @@ -156,7 +156,7 @@ def get_base_forkpoint(basebranch: str) -> Tuple[str, int]: gitargs = ['merge-base', '--fork-point', basebranch] lines = b4.git_get_command_lines(None, gitargs) if not lines: - logger.crtitical('CRITICAL: Could not find common ancestor with %s', basebranch) + logger.critical('CRITICAL: Could not find common ancestor with %s', basebranch) raise RuntimeError('Branches %s and %s have no common ancestors', basebranch, mybranch) fp = lines[0] logger.debug('Fork-point between %s and %s is %s', mybranch, basebranch, fp) |