Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 259842b

Browse files
committed
Fix grammar and spacing in a warning message
1 parent f2d072e commit 259842b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

IPython/core/magics/extension.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ def install_ext(self, parameter_s=''):
4343
-n filename : Specify a name for the file, rather than taking it from
4444
the URL.
4545
"""
46-
warn("%install_ext` is deprecated, please distribute your extension(s)"
47-
"as a python packages.", UserWarning)
46+
warn("%install_ext` is deprecated, please distribute your extension "
47+
"as a python package.", UserWarning)
4848
opts, args = self.parse_options(parameter_s, 'n:')
4949
try:
5050
filename = self.shell.extension_manager.install_extension(args,

0 commit comments

Comments
 (0)