Merge pull request #2 from janLo/resource-arg-fix
Fix wrong argument for resource creation.
This commit is contained in:
commit
c0ac6d701a
1 changed files with 1 additions and 1 deletions
|
@ -644,7 +644,7 @@ class Client(object):
|
||||||
|
|
||||||
def resource(self, remote_path):
|
def resource(self, remote_path):
|
||||||
urn = Urn(remote_path)
|
urn = Urn(remote_path)
|
||||||
return Resource(self, urn.path())
|
return Resource(self, urn)
|
||||||
|
|
||||||
def push(self, remote_directory, local_directory):
|
def push(self, remote_directory, local_directory):
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue