Add git cl lol.
Because everyone needs humour.
Fix a small bug in subcommands.py with undocumented commands.
R=stip@chromium.org
BUG=
Review URL: https://codereview.chromium.org/554123003
git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@291867 0039d316-1c4b-4281-b951-d872f2087c98
diff --git a/git_cl.py b/git_cl.py
index b13dc4d..a9b2376 100755
--- a/git_cl.py
+++ b/git_cl.py
@@ -2775,6 +2775,29 @@
return 0
+def CMDlol(parser, args):
+ # This command is intentionally undocumented.
+ print(""" / /
+ (\/_//`)
+ / '/
+ 0 0 \
+ / \
+ / __/ \
+ /, _/ \ \_
+ `-./ ) | ~^~^~^~^~^~^~^~\~.
+ ( / \_}
+ | / |
+ ; | \ /
+ \/ ,/ \ |
+ / /~~|~|~~~~~~|~|\ |
+ / / | | | | `\ \
+ / / | | | | \ \
+ / ( | | | | \ \
+ jgs /,_) /__) /__) /,_/
+ '''''"""""'''""""""'''""""""''"""""''''' """)
+ return 0
+
+
class OptionParser(optparse.OptionParser):
"""Creates the option parse and add --verbose support."""
def __init__(self, *args, **kwargs):