sapling/eden/scm/edenscm/mercurial/identity.py

26 lines
781 B
Python
Raw Normal View History

# Portions Copyright (c) Facebook, Inc. and its affiliates.
#
# This software may be used and distributed according to the terms of the
# GNU General Public License version 2.
# identity.py - program identity
#
# Copyright Matt Mackall <mpm@selenic.com> and others
#
# This software may be used and distributed according to the terms of the
# GNU General Public License version 2 or any later version.
prog = "hg"
product = "Mercurial"
longproduct = "Mercurial Distributed SCM"
templatemap = {"@prog@": prog, "@Product@": product, "@LongProduct@": longproduct}
def replace(s):
"""Replace template instances in the given string"""
if s is not None:
for template, replacement in templatemap.items():
s = s.replace(template, replacement)
return s