diff options
Diffstat (limited to 'Lib/packaging/run.py')
-rw-r--r-- | Lib/packaging/run.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/packaging/run.py b/Lib/packaging/run.py index 59ad6ee..671a4bf 100644 --- a/Lib/packaging/run.py +++ b/Lib/packaging/run.py @@ -500,7 +500,7 @@ class Dispatcher: for help_option, short, desc, func in cmd_class.help_options: if hasattr(opts, help_option.replace('-', '_')): help_option_found = True - if hasattr(func, '__call__'): + if callable(func): func() else: raise PackagingClassError( |