From 24d6c1b7214dd00ac67089f3344f03dab25af546 Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Thu, 28 Oct 2021 18:57:33 +0200 Subject: [PATCH] cleanup print --- misc/statifier.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/misc/statifier.py b/misc/statifier.py index 512881e..b4bdb71 100644 --- a/misc/statifier.py +++ b/misc/statifier.py @@ -12,12 +12,12 @@ class Statifier: def wget(self, language, dir): command = 'wget -q --mirror -p --adjust-extension --header="Accept-Language: %s" -e robots=off --base=./ -k -P %s https://%s' % (language, dir, self.domain) - print(command) + # print(command) os.system(command) def sed(self, dir, rule): command = "find %s -type f -print0 | xargs -0 sed -r -i -e '%s'" % (dir, rule) - print(command) + # print(command) os.system(command) def fix_languages(self, dir, language): -- 2.39.5