From 397a002aec2fafcde5809fb3621f80bd0aef8177 Mon Sep 17 00:00:00 2001 From: noseglasses Date: Tue, 26 Dec 2023 09:57:47 +0100 Subject: [PATCH] fix: Typo --- src/elf_diff/binutils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/elf_diff/binutils.py b/src/elf_diff/binutils.py index c99ddf70..746844b3 100644 --- a/src/elf_diff/binutils.py +++ b/src/elf_diff/binutils.py @@ -90,7 +90,7 @@ def findUtility(self, name: str) -> None: setattr(self, command_name, command) return - raise Exception(f"Unnable to find {name} command") + raise Exception(f"Unable to find {name} command") def initialize( self, associate: Dict, bin_prefix: Optional[str], bin_dir: Optional[str]