From 3f2ae8450b159ea93368da05a93b87913f1d9049 Mon Sep 17 00:00:00 2001 From: Nikos Skalkotos Date: Thu, 25 Apr 2013 12:52:46 +0300 Subject: [PATCH 1/1] Fix typo in sh.CommandNotFound exception --- image_creator/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/image_creator/util.py b/image_creator/util.py index 9339fd8..61a97e9 100644 --- a/image_creator/util.py +++ b/image_creator/util.py @@ -53,7 +53,7 @@ def get_command(command): try: return sh.__getattr__(command) - except sh.CommadNotFount as e: + except sh.CommandNotFound as e: return find_sbin_command(command, e) -- 1.7.10.4