bibisect/mergeranges | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 13e14e062847c003117108d08b9fe06441f7e221 Author: Bjoern Michaelsen <[email protected]> Date: Thu Mar 27 23:51:38 2014 +0100 fix missing module diff --git a/bibisect/mergeranges b/bibisect/mergeranges index d7416c2..eed6ae9 100755 --- a/bibisect/mergeranges +++ b/bibisect/mergeranges @@ -28,7 +28,7 @@ def init_branch(startpoint): try: justrunit(['git', 'checkout', branchName]) - except CalledProcessError as e: + except subprocess.CalledProcessError as e: # If the branch does not exist, we need to create it. justrunit(['git', 'checkout', '-b', branchName, startpoint]) print("Creating branch " + branchName) _______________________________________________ Libreoffice-commits mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
