##// END OF EJS Templates
Merge pull request #13410 from Carreau/programdata...
Matthias Bussonnier -
r27350:0034340b merge
parent child Browse files
Show More
@@ -34,9 +34,9 b' from traitlets import ('
34 34 )
35 35
36 36 if os.name == "nt":
37 programdata = Path(os.environ.get("PROGRAMDATA", None))
38 if programdata:
39 SYSTEM_CONFIG_DIRS = [str(programdata / "ipython")]
37 programdata = os.environ.get("PROGRAMDATA", None)
38 if programdata is not None:
39 SYSTEM_CONFIG_DIRS = [str(Path(programdata) / "ipython")]
40 40 else: # PROGRAMDATA is not defined by default on XP.
41 41 SYSTEM_CONFIG_DIRS = []
42 42 else:
General Comments 0
You need to be logged in to leave comments. Login now