From 60f6294e290395eb49899f4c1d56b5cf9b509a5b Mon Sep 17 00:00:00 2001 From: Artem Bityutskiy Date: Thu, 8 Nov 2012 15:56:45 +0200 Subject: [PATCH] BmapCreate: fix function name Function name was mis-spelled, fix it. Change-Id: Ib3c58367a4fd757fbee4753925b69d9dc6c38a5e Signed-off-by: Artem Bityutskiy --- bmaptools/BmapCreate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bmaptools/BmapCreate.py b/bmaptools/BmapCreate.py index b000abb..7ebedc8 100644 --- a/bmaptools/BmapCreate.py +++ b/bmaptools/BmapCreate.py @@ -120,7 +120,7 @@ class BmapCreate: # FIEMAP is not supported by the running kernel and we need to # fall-back to FIBMAP, which requires root permissions. try: - self_is_mapped_fibmap(0) + self._is_mapped_fibmap(0) except Error as err: if err.errno == os.errno.EPERM or err.errno == os.errno.EACCES: raise Error("unfortunately your system does not support " \ -- 2.7.4