]> git.parisson.com Git - docker-django-scripts.git/commitdiff
cleanup print
authorGuillaume Pellerin <guillaume.pellerin@ircam.fr>
Thu, 28 Oct 2021 16:57:33 +0000 (18:57 +0200)
committerGuillaume Pellerin <guillaume.pellerin@ircam.fr>
Thu, 28 Oct 2021 16:57:33 +0000 (18:57 +0200)
misc/statifier.py

index 512881ee1933e2f1c45ddb5ffed83197bee1bbdc..b4bdb715f9f933975042f3d440de47e04f36ec1e 100644 (file)
@@ -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):