diff options
author | Radostin Stoyanov <rstoyanov1@gmail.com> | 2017-06-26 07:28:50 +0100 |
---|---|---|
committer | Cédric Bosdonnat <cbosdonnat@suse.com> | 2017-06-28 13:58:50 +0200 |
commit | c5c66a84e0a38aa8c4daa5c458f626106c7a6768 (patch) | |
tree | ea9fefef6b3f43ad76ac96d6f8cf1a182f302038 /src/virtBootstrap/virt_bootstrap.py | |
parent | 8306c37832613c2c0d4d75806c6763e6678c5edd (diff) | |
download | virt-bootstrap.git-c5c66a84e0a38aa8c4daa5c458f626106c7a6768.tar.gz virt-bootstrap.git-c5c66a84e0a38aa8c4daa5c458f626106c7a6768.tar.xz virt-bootstrap.git-c5c66a84e0a38aa8c4daa5c458f626106c7a6768.zip |
Resolve pylint issues
Diffstat (limited to 'src/virtBootstrap/virt_bootstrap.py')
-rwxr-xr-x | src/virtBootstrap/virt_bootstrap.py | 2 |
1 files changed, 1 insertions, 1 deletions
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) |