From c5a6e7c96cf3fe32315e16c91dbbc47fc9ba958e Mon Sep 17 00:00:00 2001 From: olpc user Date: Sun, 12 Jan 2020 09:27:34 -0800 Subject: add fix for spaces vs tabs for python3 --- backend/resilient/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'backend/resilient') 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: -- cgit v1.2.3