equal
deleted
inserted
replaced
3211 def version_(ui): |
3211 def version_(ui): |
3212 """output version and copyright information""" |
3212 """output version and copyright information""" |
3213 ui.write(_("Mercurial Distributed SCM (version %s)\n") |
3213 ui.write(_("Mercurial Distributed SCM (version %s)\n") |
3214 % util.version()) |
3214 % util.version()) |
3215 ui.status(_( |
3215 ui.status(_( |
3216 "\nCopyright (C) 2005-2009 Matt Mackall <mpm@selenic.com> and others\n" |
3216 "\nCopyright (C) 2005-2010 Matt Mackall <mpm@selenic.com> and others\n" |
3217 "This is free software; see the source for copying conditions. " |
3217 "This is free software; see the source for copying conditions. " |
3218 "There is NO\nwarranty; " |
3218 "There is NO\nwarranty; " |
3219 "not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n" |
3219 "not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n" |
3220 )) |
3220 )) |
3221 |
3221 |