From 5d5519b7b030d68288fff2807975f17cdff818e1 Mon Sep 17 00:00:00 2001 From: Gormogon Date: Wed, 18 Feb 2015 09:22:33 -0500 Subject: [PATCH] [PEP 8] Comparison to 'False' --- src/modules/unpackfs/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/unpackfs/main.py b/src/modules/unpackfs/main.py index 73cbb34c6..747e7fb5f 100644 --- a/src/modules/unpackfs/main.py +++ b/src/modules/unpackfs/main.py @@ -230,7 +230,7 @@ def run(): if fs == sourcefs: fs_is_supported = True - if fs_is_supported == False: + if not fs_is_supported: return "Bad filesystem", "sourcefs=\"{}\"".format(sourcefs) destination = os.path.abspath(root_mount_point + entry["destination"])