# # # patch "www/viewmtn/monotone.py" # from [f8211dca24b2b5e48c89d5e88d95388a683282b7] # to [7a49d40e757446fa186a98730c7a1c0ac8f4250f] # ============================================================ --- www/viewmtn/monotone.py f8211dca24b2b5e48c89d5e88d95388a683282b7 +++ www/viewmtn/monotone.py 7a49d40e757446fa186a98730c7a1c0ac8f4250f @@ -285,7 +285,7 @@ def log(self, ids, limit=0): rv = [] entry = None - command = self.base_command + " --merges log " + ' '.join(map(lambda x: '-r ' + pipes.quote(x), ids)) + command = self.base_command + " log " + ' '.join(map(lambda x: '-r ' + pipes.quote(x), ids)) if limit > 0: command += " --last=%d" % (limit) iterator = utility.iter_command(command) for line in iterator: