# HG changeset patch # User Pulkit Goyal <7895pulkit@gmail.com> # Date 1515673474 -19800 # Node ID 43b7773e00ae46d77b7c2b84a6eed06a910a2b26 # Parent 6d345d7ca682b01242d1dcb0f0a0cb2d5421a4fd obshistory: remove the unused function The function is not used anymore. diff -r 6d345d7ca682 -r 43b7773e00ae hgext3rd/evolve/obshistory.py --- a/hgext3rd/evolve/obshistory.py Thu Jan 11 17:11:10 2018 +0530 +++ b/hgext3rd/evolve/obshistory.py Thu Jan 11 17:54:34 2018 +0530 @@ -163,10 +163,6 @@ return True, succ -def _indent(content, indent=4): - extra = ' ' * indent - return "".join(extra + line for line in content.splitlines(True)) - def getmarkerdescriptionpatch(repo, base, succ): basectx = repo[base] succctx = repo[succ]