comparison mercurial/commands.py @ 12829:01145ee78c53 stable

version: replace email address with url to reduce private mail
author Matt Mackall <mpm@selenic.com>
date Sun, 24 Oct 2010 16:02:10 -0500
parents 165079e564f0
children 4d657b524be8
comparison
equal deleted inserted replaced
12828:af1006d2f970 12829:01145ee78c53
3862 def version_(ui): 3862 def version_(ui):
3863 """output version and copyright information""" 3863 """output version and copyright information"""
3864 ui.write(_("Mercurial Distributed SCM (version %s)\n") 3864 ui.write(_("Mercurial Distributed SCM (version %s)\n")
3865 % util.version()) 3865 % util.version())
3866 ui.status(_( 3866 ui.status(_(
3867 "\nCopyright (C) 2005-2010 Matt Mackall <mpm@selenic.com> and others\n" 3867 "(see http://mercurial.selenic.com for more information)\n"
3868 "\nCopyright (C) 2005-2010 Matt Mackall and others\n"
3868 "This is free software; see the source for copying conditions. " 3869 "This is free software; see the source for copying conditions. "
3869 "There is NO\nwarranty; " 3870 "There is NO\nwarranty; "
3870 "not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n" 3871 "not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n"
3871 )) 3872 ))
3872 3873