On Tue, Apr 02, 2013 at 11:00:14PM -0700,
linux...@gmail.com wrote:
> [dhyan@dhyan B2G]$ sudo ./config.sh emulator-x86
> File "./repo", line 220
> print("fatal: invalid branch name '%s'" % branch, file=sys.stderr)
Commit fa9c01dd7 updates to a new version of repo, which appears to be
compatible with Python 3 instead of 2.x only, but now requires at least
Python 2.6.
(Specifically: Python 3 replaced the print statement syntax with a
function named "print", as seen in the error message above; Python 2.6+
supports it if you opt in with "from __future__ import print_function",
as the new repo script does.)
--Jed