# # # patch "monotone.py" # from [fa4671a5ad03c9e77fa0e4635ded7e386f0d3e24] # to [39dcefef2486e93bd971174f5d6ae75c51861fbe] # ============================================================ --- monotone.py fa4671a5ad03c9e77fa0e4635ded7e386f0d3e24 +++ monotone.py 39dcefef2486e93bd971174f5d6ae75c51861fbe @@ -44,7 +44,7 @@ def heads(self, branch): result = utility.run_command(self.base_command + " automate heads %s" % (pipes.quote(branch))) if result['exitcode'] != 0: - raise Exception("Unable to get list of heads: %s" (result['childerr'])) + raise Exception("Unable to get list of heads: %s" % (result['childerr'])) else: return filter(None, result['fromchild'].split('\n')) def certs(self, id):