From 97ac7ca01596fe3c79d62c68014d4d0b0ea00684 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micka=C3=ABl=20Perrin?= Date: Wed, 20 Jul 2016 11:56:38 +0200 Subject: [PATCH] [TASK] formatting --- config_sync.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config_sync.py b/config_sync.py index 1be51f6..1a511d4 100755 --- a/config_sync.py +++ b/config_sync.py @@ -86,7 +86,7 @@ def generate_ignore_string(self, ignores, sync_method='unison'): ignores = ignores.split(':') if sync_method == 'unison': separator = "' -ignore 'Path " - return separator[1:] + separator.join(ignores) + "' " + return separator[1:] + separator.join(ignores) + "' " elif sync_method == 'tar': separator = " --exclude " return separator + separator.join(ignores) + ' '