Style fixes

This commit is contained in:
Evgeny Ezhov 2019-11-27 15:48:03 +03:00
parent 8a919ac866
commit 13ba29604a

View file

@ -693,7 +693,6 @@ class Client(object):
urn = Urn(remote_directory, directory=True)
## here we check for the current directory
if not self.is_dir(urn.path()):
raise OptionNotValid(name="remote_path", value=remote_directory)
@ -702,7 +701,6 @@ class Client(object):
local_resource_names = listdir(local_directory)
## here we get all files and directories in the current directory
paths = self.list(urn.path())
expression = "{begin}{end}".format(begin="^", end=remote_directory)
remote_resource_names = prune(paths, expression)
@ -715,13 +713,10 @@ class Client(object):
remote_urn = Urn(remote_path)
## if the string ends with an "/" it *must* be a directory
## no need to check it here
if remote_urn.path().endswith("/"):
if not os.path.exists(local_path):
updated = True
os.mkdir(local_path)
## nevertheless, since we pull the directory, it will be checked up there
self.pull(remote_directory=remote_path, local_directory=local_path)
else:
if remote_resource_name in local_resource_names: