From c5c66a84e0a38aa8c4daa5c458f626106c7a6768 Mon Sep 17 00:00:00 2001 From: Radostin Stoyanov Date: Mon, 26 Jun 2017 07:28:50 +0100 Subject: Resolve pylint issues --- src/virtBootstrap/virt_bootstrap.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/virtBootstrap/virt_bootstrap.py') diff --git a/src/virtBootstrap/virt_bootstrap.py b/src/virtBootstrap/virt_bootstrap.py index 1befaae..bef5e88 100755 --- a/src/virtBootstrap/virt_bootstrap.py +++ b/src/virtBootstrap/virt_bootstrap.py @@ -93,7 +93,7 @@ def bootstrap(args): source = get_source(args) if not os.path.exists(args.dest): os.makedirs(args.dest) - elif not os.path.isdir(args.dest): # Show error if not directory + elif not os.path.isdir(args.dest): # Show error if not directory error("Destination path '%s' is not directory.", args.dest) sys.exit(1) -- cgit