# HG changeset patch # User Jun Wu # Date 1490815275 25200 # Node ID bf64449b27792347c839af789685a6097ef8e38d # Parent 62676bb8d5348d128b178b134fa80eae2016e0d0 hardlink: extract topic text logic of copyfiles The topic text shows whether it's "linking" or "copying", based on "hardlink" value. The function is extracted so a later patch can reuse it. diff -r 62676bb8d534 -r bf64449b2779 mercurial/util.py --- a/mercurial/util.py Wed Mar 29 14:56:58 2017 +0530 +++ b/mercurial/util.py Wed Mar 29 12:21:15 2017 -0700 @@ -1129,10 +1129,9 @@ if hardlink is None: hardlink = (os.stat(src).st_dev == os.stat(os.path.dirname(dst)).st_dev) - if hardlink: - topic = _('linking') - else: - topic = _('copying') + + gettopic = lambda: hardlink and _('linking') or _('copying') + topic = gettopic() if os.path.isdir(src): os.mkdir(dst)