| Index: third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/command.py
|
| diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/command.py b/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/command.py
|
| index a4879a34856cb7d6e6eb1e5b5b284435fbc6ff3b..f5ed8444118f81e74fb974cd1b28451ee881fb22 100644
|
| --- a/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/command.py
|
| +++ b/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/command.py
|
| @@ -150,7 +150,7 @@ class HelpPrintingOptionParser(optparse.OptionParser):
|
|
|
| # We override format_epilog to avoid the default formatting which would paragraph-wrap the epilog
|
| # and also to allow us to compute the epilog lazily instead of in the constructor (allowing it to be context sensitive).
|
| - def format_epilog(self, epilog):
|
| + def format_epilog(self, epilog): # pylint: disable=unused-argument
|
| if self.epilog_method:
|
| return "\n%s\n" % self.epilog_method()
|
| return ""
|
|
|