diff options
| author | AlexSm <[email protected]> | 2024-06-18 16:09:09 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-06-18 16:09:09 +0200 |
| commit | ae6be33d4462d1c1f93d7f99a9775167108fb09a (patch) | |
| tree | a9a2819f51548e8e55c59c48b74880f4e3f0e978 /contrib/python/ipython/py3/IPython/core/profileapp.py | |
| parent | 23e9c2f910ca634005304f9f8085adaf5b963463 (diff) | |
| parent | 5f058ae362f1af85ec0d816cc96eaca1c1750dab (diff) | |
Merge pull request #5661 from ydb-platform/mergelibs-240618-0830
Library import 240618-0830
Diffstat (limited to 'contrib/python/ipython/py3/IPython/core/profileapp.py')
| -rw-r--r-- | contrib/python/ipython/py3/IPython/core/profileapp.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/contrib/python/ipython/py3/IPython/core/profileapp.py b/contrib/python/ipython/py3/IPython/core/profileapp.py index 94cc0352e88..e7538ff201a 100644 --- a/contrib/python/ipython/py3/IPython/core/profileapp.py +++ b/contrib/python/ipython/py3/IPython/core/profileapp.py @@ -303,8 +303,11 @@ class ProfileApp(Application): def start(self): if self.subapp is None: - print("No subcommand specified. Must specify one of: %s"%(self.subcommands.keys())) - print() + print( + "No subcommand specified. Must specify one of: " + + ", ".join(map(repr, self.subcommands)) + + ".\n" + ) self.print_description() self.print_subcommands() self.exit(1) |
