From c484ec7cd7297dce15b1ffc1a225d8d8403ee17a Mon Sep 17 00:00:00 2001 From: fk128 Date: Thu, 4 Jun 2015 09:41:13 +0100 Subject: [PATCH] fixes #27 --- notes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notes.py b/notes.py index 8bd9adb..bac6e1b 100644 --- a/notes.py +++ b/notes.py @@ -122,7 +122,7 @@ def async_open(self, file_path): class NotesNewCommand(sublime_plugin.ApplicationCommand): def run(self, title=None): - root = settings().get("root") + root = get_root() self.notes_dir = os.path.expanduser(root) self.window = sublime.active_window()