##// END OF EJS Templates
Please linter
Matthias Bussonnier -
Show More
@@ -218,10 +218,8 b' def find_entry_points():'
218 'ipython%s = IPython:start_ipython',
218 'ipython%s = IPython:start_ipython',
219 ]
219 ]
220 major_suffix = str(sys.version_info[0])
220 major_suffix = str(sys.version_info[0])
221 return (
221 return [e % "" for e in ep] + [e % major_suffix for e in ep]
222 [e % "" for e in ep]
222
223 + [e % major_suffix for e in ep]
224 )
225
223
226 class install_lib_symlink(Command):
224 class install_lib_symlink(Command):
227 user_options = [
225 user_options = [
General Comments 0
You need to be logged in to leave comments. Login now