From 887311e8d25aab718bf8ba070f04db04b2d56b35 Mon Sep 17 00:00:00 2001 From: ghost Date: Thu, 19 Nov 2009 18:53:47 +0100 Subject: [PATCH] lib/bb/fetch/git.py: always use english here --- lib/bb/fetch/git.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/bb/fetch/git.py b/lib/bb/fetch/git.py index cb97dfc..b194172 100644 --- a/lib/bb/fetch/git.py +++ b/lib/bb/fetch/git.py @@ -198,7 +198,7 @@ class Git(Fetch): runfetchcmd("git read-tree %s" % (tag),d) runfetchcmd("git checkout-index -q -f --prefix=%s -a" % (copath),d) bb.mkdirhier(os.path.join(copath, ".git", "")) - runfetchcmd("git log %s --max-count=1 --date=iso -- > %s.git/last_commit_info" % (tag, copath),d) + runfetchcmd("LANG=\"en\" git log %s --max-count=1 --date=iso -- > %s.git/last_commit_info" % (tag, copath),d) runfetchcmd("echo %s > %s.git/branch" % (branch, copath),d) os.chdir(codir) -- 2.7.4