# HG changeset patch # User Stefano Tortarolo # Date 2010-02-12 14:17:10 # Node ID 6cebf27287de719675ba9b7439ad7dadf58f417b # Parent 5a3a916aad58d63e70ef141f53ade3f7c4855407 rebase: split line longer than 80 chars diff --git a/hgext/rebase.py b/hgext/rebase.py --- a/hgext/rebase.py +++ b/hgext/rebase.py @@ -169,8 +169,8 @@ def rebase(ui, repo, **opts): rebased = [rev for rev in state if state[rev] != nullmerge] if rebased: if set(repo.changelog.descendants(min(rebased))) - set(state): - ui.warn(_("warning: new changesets detected on source branch, " - "not stripping\n")) + ui.warn(_("warning: new changesets detected " + "on source branch, not stripping\n")) else: repair.strip(ui, repo, repo[min(rebased)].node(), "strip")