From b3654c5036b6555d304db523ee9c69f28ee43135 2013-07-09 18:48:03 From: Min RK Date: 2013-07-09 18:48:03 Subject: [PATCH] Merge pull request #3591 from cgohlke/patch-1 Refer to Setuptools instead of Distribute Distribute is no more. --- diff --git a/scripts/ipython_win_post_install.py b/scripts/ipython_win_post_install.py index a3c923f..1604ff3 100755 --- a/scripts/ipython_win_post_install.py +++ b/scripts/ipython_win_post_install.py @@ -59,10 +59,10 @@ def install(): if not have_setuptools: # This currently doesn't work without setuptools, # so don't bother making broken links - print("Distribute (setuptools) is required to" + print("Setuptools is required to" " create Start Menu items.", file=sys.stderr) print("Re-run this installer after installing" - " distribute to get Start Menu items.", file=sys.stderr) + " Setuptools to get Start Menu items.", file=sys.stderr) return # Lookup path to common startmenu ...