Merge pull request #2 from janLo/resource-arg-fix

Fix wrong argument for resource creation.
This commit is contained in:
Evgeny Ezhov 2018-03-15 10:18:00 +03:00 committed by GitHub
commit c0ac6d701a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -644,7 +644,7 @@ class Client(object):
def resource(self, remote_path):
urn = Urn(remote_path)
return Resource(self, urn.path())
return Resource(self, urn)
def push(self, remote_directory, local_directory):