diff --git a/git_cl.py b/git_cl.py index a9b237652a..69af5455bc 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