Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xscripts/updatetranslations.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/scripts/updatetranslations.py b/scripts/updatetranslations.py
index 618e2f91e..af66b26ef 100755
--- a/scripts/updatetranslations.py
+++ b/scripts/updatetranslations.py
@@ -35,18 +35,18 @@ def CheckForGitHasTsFileChanges(tsfiles: list) -> bool:
def Commit(tsfiles: list) -> None:
res = subprocess.run(["git", "reset", '--mixed'], capture_output=True)
if res.returncode != 0:
- logging.error('The git reset call returned an error status code ' + res.returncode)
- logging.debug('stdout: ' + res.stdout)
+ logging.error('The git reset call returned an error status code %d', res.returncode)
+ logging.debug('stdout: %s', res.stdout)
exit(1)
res = subprocess.run(["git", "add"] + tsfiles, capture_output=True)
if res.returncode != 0:
- logging.error('The git add call returned an error status code ' + res.returncode)
- logging.debug('stdout: ' + res.stdout)
+ logging.error('The git add call returned an error status code %d', res.returncode)
+ logging.debug('stdout: %s', res.stdout)
exit(1)
res = subprocess.run(["git", "commit", '-m', 'TRANSLATION: Update translation files'], capture_output=True)
if res.returncode != 0:
- logging.error('The git commit call returned an error status code ' + res.returncode)
- logging.debug('stdout: ' + res.stdout)
+ logging.error('The git commit call returned an error status code %d', res.returncode)
+ logging.debug('stdout: %s', res.stdout)
exit(1)
def Update(lupdatebin, tsfile: str, debuglupdate: bool) -> (int, int, int):