Merge pull request #1552 from minrk/fix1550

use os.getcwdu in NotebookManager

prevents unicode error when starting in non-unicode path.

closes #1550
Min RK 14 years ago
commit c543852c33

@ -34,7 +34,7 @@ from IPython.utils.traitlets import Unicode, List, Dict, Bool
class NotebookManager(LoggingConfigurable):
notebook_dir = Unicode(os.getcwd(), config=True, help="""
notebook_dir = Unicode(os.getcwdu(), config=True, help="""
The directory to use for notebooks.
""")

Loading…
Cancel
Save