From c8699bf8254ef081b7faf21f293d5d11a1bb4110 2014-10-30 21:43:06 From: Min RK Date: 2014-10-30 21:43:06 Subject: [PATCH] fix Windows typo introduced in #6810 --- diff --git a/IPython/core/application.py b/IPython/core/application.py index 613cbfb..87cd3eb 100644 --- a/IPython/core/application.py +++ b/IPython/core/application.py @@ -30,7 +30,7 @@ from IPython.utils.traitlets import List, Unicode, Type, Bool, Dict, Set, Instan if os.name == 'nt': programdata = os.environ.get('PROGRAMDATA', None) if programdata: - SYSTEM_CONFIG_DIRS = [pjoin(programdata, 'ipython')] + SYSTEM_CONFIG_DIRS = [os.path.join(programdata, 'ipython')] else: # PROGRAMDATA is not defined by default on XP. SYSTEM_CONFIG_DIRS = [] else: