# HG changeset patch # User Franz Glasner # Date 1534454532 -7200 # Node ID 23cbfc34ae4a7e194373a3c0f3c812d531c04ebd # Parent 06a60e2a9887a5fbbff6a481c234a5e185ac3cc5 Begin "last" style path output with ".../" diff -r 06a60e2a9887 -r 23cbfc34ae4a extensions/kwarchive.py --- a/extensions/kwarchive.py Thu Aug 16 23:11:37 2018 +0200 +++ b/extensions/kwarchive.py Thu Aug 16 23:22:12 2018 +0200 @@ -411,7 +411,7 @@ path_uri = bytes(path_url) elif path_filter == "last": path_url = str(util.url(ui.paths[hgpath].loc)).split("/") - path_uri = bytes(path_url[-1]) + path_uri = bytes(b".../"+path_url[-1]) else: raise error.Abort("path-filter `%s' not implemented" % path_filter)