comparison mercurial/commands.py @ 2858:345bac2bc4ec

update copyrights.
author Vadim Gelfer <vadim.gelfer@gmail.com>
date Sat, 12 Aug 2006 12:30:02 -0700
parents c9b08cacf983
children 71e78f2ca5ae
comparison
equal deleted inserted replaced
2857:c9b08cacf983 2858:345bac2bc4ec
1 # commands.py - command processing for mercurial 1 # commands.py - command processing for mercurial
2 # 2 #
3 # Copyright 2005 Matt Mackall <mpm@selenic.com> 3 # Copyright 2005, 2006 Matt Mackall <mpm@selenic.com>
4 # 4 #
5 # This software may be used and distributed according to the terms 5 # This software may be used and distributed according to the terms
6 # of the GNU General Public License, incorporated herein by reference. 6 # of the GNU General Public License, incorporated herein by reference.
7 7
8 from demandload import demandload 8 from demandload import demandload
631 def show_version(ui): 631 def show_version(ui):
632 """output version and copyright information""" 632 """output version and copyright information"""
633 ui.write(_("Mercurial Distributed SCM (version %s)\n") 633 ui.write(_("Mercurial Distributed SCM (version %s)\n")
634 % version.get_version()) 634 % version.get_version())
635 ui.status(_( 635 ui.status(_(
636 "\nCopyright (C) 2005 Matt Mackall <mpm@selenic.com>\n" 636 "\nCopyright (C) 2005, 2006 Matt Mackall <mpm@selenic.com>\n"
637 "This is free software; see the source for copying conditions. " 637 "This is free software; see the source for copying conditions. "
638 "There is NO\nwarranty; " 638 "There is NO\nwarranty; "
639 "not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n" 639 "not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n"
640 )) 640 ))
641 641