diff options
author | Karl Semich <0xloem@gmail.com> | 2016-06-11 13:07:58 -0400 |
---|---|---|
committer | Karl Semich <0xloem@gmail.com> | 2016-06-11 13:07:58 -0400 |
commit | fba10a010e6e682dbb047aa15eb2fac9fbe45f9f (patch) | |
tree | 3bf8a310415d99688e3f1bc6d3c4800c48e9cb80 /backend/resilient/freenet.py | |
parent | 14996fed386a1a08d9039ec407f3155f8728702c (diff) | |
download | standingwithresilience-fba10a010e6e682dbb047aa15eb2fac9fbe45f9f.tar.gz standingwithresilience-fba10a010e6e682dbb047aa15eb2fac9fbe45f9f.zip |
freenet bugfix
Diffstat (limited to 'backend/resilient/freenet.py')
-rw-r--r-- | backend/resilient/freenet.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/resilient/freenet.py b/backend/resilient/freenet.py index 0f5e741..92affef 100644 --- a/backend/resilient/freenet.py +++ b/backend/resilient/freenet.py @@ -19,7 +19,7 @@ class freesitemgr(): pass def push(self): - if not ikiwiki.synced or not found or not running: + if not ikiwiki.synced or not freesitemgr.found or not running: return False config_path = os.path.join(auth_path, 'freesitemgr') status = os.system("freesitemgr -c '%s' -v -r 1 update" % config_path) |