From: Christopher Allan Webber Date: Sat, 13 Dec 2014 15:58:36 +0000 (-0600) Subject: Just spacing things out to look a bit cleaner. X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=f5a829fabf7ad541e7be3f3435787d9f2e74756d;p=mediagoblin.git Just spacing things out to look a bit cleaner. --- diff --git a/devtools/update_translations.sh b/devtools/update_translations.sh index 1887e7f5..abc96be6 100755 --- a/devtools/update_translations.sh +++ b/devtools/update_translations.sh @@ -57,7 +57,9 @@ echo "==> Compiling .mo files" for file in `find mediagoblin/i18n/ -name "*.po"`; do if [ "$file" != "mediagoblin/i18n/jbo/LC_MESSAGES/mediagoblin.po" ]; then - ./bin/pybabel compile -i $file -d mediagoblin/i18n/ -l `echo $file | awk -F / '{ print $3 }'`; + ./bin/pybabel compile -i $file \ + -d mediagoblin/i18n/ \ + -l `echo $file | awk -F / '{ print $3 }'`; else echo "Skipping $file which pybabel can't compile :("; fi;