Index: git_cl.py |
diff --git a/git_cl.py b/git_cl.py |
index a9b237652aa61badc7d1ceb2b0888aa44455c21a..69af5455bc09891be134452a2206c0a87b66fde6 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('\n'.join(( |
+ ' / /', |
+ ' (\\/_//`)', |
+ ' / \'/', |
+ ' 0 0 \\', |
+ ' / \\', |
+ ' / __/ \\', |
+ ' /, _/ \\ \\_', |
+ ' `-./ ) | ~^~^~^~^~^~^~^~\\~.', |
+ ' ( / \\_}', |
+ ' | / |', |
+ ' ; | \\ /', |
+ ' \\/ ,/ \\ |', |
+ ' / /~~|~|~~~~~~|~|\\ |', |
+ ' / / | | | | `\\ \\', |
+ ' / / | | | | \\ \\', |
+ ' / ( | | | | \\ \\', |
+ ' jgs /,_) /__) /__) /,_/', |
+ ' \'\'\'\'\'"""""\'\'\'""""""\'\'\'""""""\'\'"""""\'\'\'\'\''))) |
return 0 |