diff options
author | zotlabs <mike@macgirvin.com> | 2016-10-10 22:44:11 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2016-10-10 22:46:24 -0700 |
commit | 26cc73118a648940a20a4f462a07a73681309af0 (patch) | |
tree | 94926c3bc1922f398b381aa02abe2fbeff81bd49 /util/zotsh | |
parent | dab3495751fed06589b7d082e24c96f2188abcc6 (diff) | |
download | volse-hubzilla-26cc73118a648940a20a4f462a07a73681309af0.tar.gz volse-hubzilla-26cc73118a648940a20a4f462a07a73681309af0.tar.bz2 volse-hubzilla-26cc73118a648940a20a4f462a07a73681309af0.zip |
don't expire posts before 2001
Diffstat (limited to 'util/zotsh')
-rwxr-xr-x | util/zotsh/zotsh.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util/zotsh/zotsh.py b/util/zotsh/zotsh.py index 36506b39d..d5e1aa527 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="cloud", verify_ssl=VERIFY_SSL)
+ self.davclient = easywebdav.connect( self.hostname, protocol='https', session=session, path="dav", 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("/cloud"+self.davclient.cwd,"")
+ name = f.name.replace("/dav"+self.davclient.cwd,"")
type = "-"
if name.endswith("/"):
type = "d"
|