aboutsummaryrefslogtreecommitdiffstats
path: root/util/zotsh/zotsh.py
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2016-11-10 15:59:49 -0800
committerzotlabs <mike@macgirvin.com>2016-11-10 15:59:49 -0800
commit20497f1be30348cddc4c16f7ffa5615cc17a4225 (patch)
tree150b3000813fc5d475c1e6c39a5c3ee0999a5c4d /util/zotsh/zotsh.py
parent74947d1c1cb7c669ef2a167990066b34d89b5b07 (diff)
downloadvolse-hubzilla-20497f1be30348cddc4c16f7ffa5615cc17a4225.tar.gz
volse-hubzilla-20497f1be30348cddc4c16f7ffa5615cc17a4225.tar.bz2
volse-hubzilla-20497f1be30348cddc4c16f7ffa5615cc17a4225.zip
Some minor tweaks to zotsh.py, document that it needs the twitter_api plugin on the first hop since we no longer provide the twitter api by default
Diffstat (limited to 'util/zotsh/zotsh.py')
-rwxr-xr-xutil/zotsh/zotsh.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/util/zotsh/zotsh.py b/util/zotsh/zotsh.py
index d5e1aa527..36506b39d 100755
--- a/util/zotsh/zotsh.py
+++ b/util/zotsh/zotsh.py
@@ -55,7 +55,7 @@ class ZotSH(object):
@session.setter
def session(self, session):
self._session = session
- self.davclient = easywebdav.connect( self.hostname, protocol='https', session=session, path="dav", verify_ssl=VERIFY_SSL)
+ self.davclient = easywebdav.connect( self.hostname, protocol='https', session=session, path="cloud", verify_ssl=VERIFY_SSL)
@property
def PS1(self):
@@ -205,7 +205,7 @@ class ZotSH(object):
print _fmt('d', 0, "../")
for f in r:
- name = f.name.replace("/dav"+self.davclient.cwd,"")
+ name = f.name.replace("/cloud"+self.davclient.cwd,"")
type = "-"
if name.endswith("/"):
type = "d"