mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 878859 - Remove the mach clippy avatar; r=ted
DONTBUILD since this is not part of the build!
This commit is contained in:
parent
58cbdd692d
commit
f02477477f
@ -37,34 +37,6 @@ from .logging import LoggingManager
|
|||||||
from .registrar import Registrar
|
from .registrar import Registrar
|
||||||
|
|
||||||
|
|
||||||
AVATAR = '''
|
|
||||||
_.-;:q=._
|
|
||||||
.' j=""^k;:\.
|
|
||||||
; .F ";`Y
|
|
||||||
,;.J_ ;'j
|
|
||||||
,-;"^7F : .F
|
|
||||||
,-'-_<. ;gj.
|
|
||||||
; _,._`\. : `T"5
|
|
||||||
: `?8w7 `J ,-'" -^q.
|
|
||||||
\;._ _,=' ; n58L Y.
|
|
||||||
F;"; .' k_ `^' j'
|
|
||||||
J;:: ; "y:-='
|
|
||||||
L;;== |:; jT\\
|
|
||||||
L;:;J J:L 7:;'
|
|
||||||
I;|:.L |:k J:.'
|
|
||||||
|;J:.| ;.I F.:
|
|
||||||
J;:L:: |.| |.J
|
|
||||||
J:`J.`. :.J |. L
|
|
||||||
L :k:`._ ,',j J; |
|
|
||||||
I :`=.:."_".' L J
|
|
||||||
|.: `"-=-' |.J
|
|
||||||
`: : ;:;
|
|
||||||
J: : /.;'
|
|
||||||
k;.\. _.;:Y'
|
|
||||||
`Y;."-=';:='
|
|
||||||
`"==="'
|
|
||||||
'''
|
|
||||||
|
|
||||||
|
|
||||||
MACH_ERROR = r'''
|
MACH_ERROR = r'''
|
||||||
The error occurred in mach itself. This is likely a bug in mach itself or a
|
The error occurred in mach itself. This is likely a bug in mach itself or a
|
||||||
@ -296,15 +268,12 @@ To see more help for a specific command, run:
|
|||||||
try:
|
try:
|
||||||
args = parser.parse_args(argv)
|
args = parser.parse_args(argv)
|
||||||
except NoCommandError:
|
except NoCommandError:
|
||||||
print(AVATAR)
|
|
||||||
print(NO_COMMAND_ERROR)
|
print(NO_COMMAND_ERROR)
|
||||||
return 1
|
return 1
|
||||||
except UnknownCommandError as e:
|
except UnknownCommandError as e:
|
||||||
print(AVATAR)
|
|
||||||
print(UNKNOWN_COMMAND_ERROR % (e.verb, e.command))
|
print(UNKNOWN_COMMAND_ERROR % (e.verb, e.command))
|
||||||
return 1
|
return 1
|
||||||
except UnrecognizedArgumentError as e:
|
except UnrecognizedArgumentError as e:
|
||||||
print(AVATAR)
|
|
||||||
print(UNRECOGNIZED_ARGUMENT_ERROR % (e.command,
|
print(UNRECOGNIZED_ARGUMENT_ERROR % (e.command,
|
||||||
' '.join(e.arguments)))
|
' '.join(e.arguments)))
|
||||||
return 1
|
return 1
|
||||||
|
Loading…
Reference in New Issue
Block a user