Mercurial > p > roundup > code
diff doc/customizing.txt @ 2583:a3ec9023dd1a maint-0.7
merge from HEAD
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Mon, 19 Jul 2004 01:49:12 +0000 |
| parents | 7e823f8938e9 |
| children | 9e1c4c932323 |
line wrap: on
line diff
--- a/doc/customizing.txt Mon Jul 19 00:46:52 2004 +0000 +++ b/doc/customizing.txt Mon Jul 19 01:49:12 2004 +0000 @@ -2963,9 +2963,9 @@ return 0 class Client(client.Client): - actions = client.Client.actions + ( - ('login', ExternalPasswordLoginAction) - ) + actions = ( + ('login', ExternalPasswordLoginAction), + ) + client.Client.actions What this does is look through the file, line by line, looking for a name that matches.
