Chromium Code Reviews| Index: git_cl.py |
| diff --git a/git_cl.py b/git_cl.py |
| index a9b237652aa61badc7d1ceb2b0888aa44455c21a..1cd54c7871220d00f29ab7d7a437a56668ab2981 100755 |
| --- a/git_cl.py |
| +++ b/git_cl.py |
| @@ -2777,24 +2777,25 @@ def CMDformat(parser, args): |
| def CMDlol(parser, args): |
| # This command is intentionally undocumented. |
| - print(""" / / |
| - (\/_//`) |
| - / '/ |
| - 0 0 \ |
| - / \ |
| - / __/ \ |
| - /, _/ \ \_ |
| - `-./ ) | ~^~^~^~^~^~^~^~\~. |
| - ( / \_} |
| - | / | |
| - ; | \ / |
| - \/ ,/ \ | |
| - / /~~|~|~~~~~~|~|\ | |
| - / / | | | | `\ \ |
| - / / | | | | \ \ |
| - / ( | | | | \ \ |
| - jgs /,_) /__) /__) /,_/ |
| - '''''"""""'''""""""'''""""""''"""""''''' """) |
| + print( |
|
ghost stip (do not use)
2014/09/10 00:54:43
make this a list of lines and do print '\n'.join(l
M-A Ruel
2014/09/10 01:06:49
Done.
|
| + ' / /\n' |
| + ' (\\/_//`)\n' |
| + ' / \'/\n' |
| + ' 0 0 \\\n' |
| + ' / \\\n' |
| + ' / __/ \\\n' |
| + ' /, _/ \\ \\_\n' |
| + ' `-./ ) | ~^~^~^~^~^~^~^~\\~.\n' |
| + ' ( / \\_}\n' |
| + ' | / |\n' |
| + ' ; | \\ /\n' |
| + ' \\/ ,/ \\ |\n' |
| + ' / /~~|~|~~~~~~|~|\\ |\n' |
| + ' / / | | | | `\\ \\\n' |
| + ' / / | | | | \\ \\\n' |
| + ' / ( | | | | \\ \\\n' |
| + ' jgs /,_) /__) /__) /,_/\n' |
| + ' \'\'\'\'\'"""""\'\'\'""""""\'\'\'""""""\'\'"""""\'\'\'\'\'') |
| return 0 |