summaryrefslogtreecommitdiff
path: root/backend/resilient
diff options
context:
space:
mode:
authorolpc user <olpc@xo-5d-f7-86.localdomain>2020-01-12 09:27:34 -0800
committerolpc user <olpc@xo-5d-f7-86.localdomain>2020-01-12 09:27:34 -0800
commitc5a6e7c96cf3fe32315e16c91dbbc47fc9ba958e (patch)
treef6de52649d41eda478d179fbdc91dfe94ace3ed3 /backend/resilient
parentf86d9e4cc87bda162d5280953e1bf873181020d8 (diff)
downloadstandingwithresilience-c5a6e7c96cf3fe32315e16c91dbbc47fc9ba958e.tar.gz
standingwithresilience-c5a6e7c96cf3fe32315e16c91dbbc47fc9ba958e.zip
add fix for spaces vs tabs for python3
Diffstat (limited to 'backend/resilient')
-rw-r--r--backend/resilient/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/resilient/__init__.py b/backend/resilient/__init__.py
index 6b6940d..900fadb 100644
--- a/backend/resilient/__init__.py
+++ b/backend/resilient/__init__.py
@@ -183,7 +183,7 @@ class ipfs:
def _config(self, key):
proc = subprocess.Popen(['ipfs', '-c', self.configdir, 'config', key], stdout=subprocess.PIPE)
for line in proc.stdout:
- return line[0:-1]
+ return line[0:-1]
def push(self):
if not ikiwiki.synced or not ipfs.found: