From 2027308249a298a9e7d98ac49062b24d4a46e1b2 Mon Sep 17 00:00:00 2001 From: Franziska Kunsmann Date: Sat, 3 Apr 2021 09:41:17 +0200 Subject: [PATCH] bundles/zfs: fix typo in check_zpool_space --- bundles/zfs/files/check_zpool_space | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bundles/zfs/files/check_zpool_space b/bundles/zfs/files/check_zpool_space index 23a2f80..ff4b9bb 100644 --- a/bundles/zfs/files/check_zpool_space +++ b/bundles/zfs/files/check_zpool_space @@ -10,7 +10,7 @@ def to_bytes(size): suffixes = ['', 'K', 'M', 'G', 'T', 'P'] number, suffix = re.match(r'([0-9\.]+)([A-Z]?)', size).groups() if suffix not in suffixes: - print('Unexpected suffix "{}" in size "{}"'.format(suffix, size) + print('Unexpected suffix "{}" in size "{}"'.format(suffix, size)) return float(number) * 1024**suffixes.index(suffix)