Show More
@@ -787,12 +787,9 b' def get_ipython_dir():' | |||
|
787 | 787 | """Get the IPython directory for this platform and user. |
|
788 | 788 | |
|
789 | 789 | This uses the logic in `get_home_dir` to find the home directory |
|
790 |
and the adds |
|
|
790 | and the adds .ipython to the end of the path. | |
|
791 | 791 | """ |
|
792 | if os.name == 'posix': | |
|
793 | 792 |
|
|
794 | else: | |
|
795 | ipdir_def = '_ipython' | |
|
796 | 793 | home_dir = get_home_dir() |
|
797 | 794 | ipdir = os.path.abspath(os.environ.get('IPYTHONDIR', |
|
798 | 795 | os.path.join(home_dir, ipdir_def))) |
General Comments 0
You need to be logged in to leave comments.
Login now