Mercurial > public > mercurial-scm > hg-stable
comparison mercurial/commands.py @ 7829:b61e918ea767
update copyright date in version information
author | Benoit Allard <benoit@aeteurope.nl> |
---|---|
date | Thu, 05 Mar 2009 10:38:39 +0100 |
parents | bd8f44638847 |
children | 30cb79d84352 |
comparison
equal
deleted
inserted
replaced
7828:f51e2263d2aa | 7829:b61e918ea767 |
---|---|
2940 def version_(ui): | 2940 def version_(ui): |
2941 """output version and copyright information""" | 2941 """output version and copyright information""" |
2942 ui.write(_("Mercurial Distributed SCM (version %s)\n") | 2942 ui.write(_("Mercurial Distributed SCM (version %s)\n") |
2943 % util.version()) | 2943 % util.version()) |
2944 ui.status(_( | 2944 ui.status(_( |
2945 "\nCopyright (C) 2005-2008 Matt Mackall <mpm@selenic.com> and others\n" | 2945 "\nCopyright (C) 2005-2009 Matt Mackall <mpm@selenic.com> and others\n" |
2946 "This is free software; see the source for copying conditions. " | 2946 "This is free software; see the source for copying conditions. " |
2947 "There is NO\nwarranty; " | 2947 "There is NO\nwarranty; " |
2948 "not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n" | 2948 "not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n" |
2949 )) | 2949 )) |
2950 | 2950 |