I realize Mercurial is not targetting Python 3.4 compatibility,
but without this change, it's not even possible to build it on
CentOS 7 (and I assume the same is true for RHEL 7).
Details
Details
- Reviewers
- None
- Group Reviewers
hg-reviewers - Commits
- rHG92b3811fd15f: hg-docker: fix Python 3.4 compatibility (for CentOS 7)
Diff Detail
Diff Detail
- Repository
- rHG Mercurial
- Lint
Automatic diff as part of commit; lint not applicable. - Unit
Automatic diff as part of commit; unit tests not applicable.
Event Timeline
Comment Actions
+ if p.returncode:
+ raise Exception('failed to build docker image: %s %s' % (p.stdout, p.stderr))
Can you change the exception type? test-check-code.t complains about it.
Comment Actions
I'll submit a new version. Apologies, I didn't realize code in contrib/ would have impact on the tests.