Skip to content

Commit

Permalink
Fixes issue when creating subdirectories
Browse files Browse the repository at this point in the history
  • Loading branch information
mauromorales committed Sep 26, 2015
1 parent 753bdd8 commit 7fdf5b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pythonx/pad/list.py
Expand Up @@ -123,7 +123,7 @@ def move_to_folder(self, path=None):#{{{2
if not path and path != "":
path = vim.eval('input("move to: ")')
if not exists(join(get_save_dir(), path)):
mkdir(join(get_save_dir, path))
mkdir(join(get_save_dir(), path))
move(self.selected_path, join(get_save_dir(), path, basename(self.selected_path)))
make_sure_dir_is_empty(path)
V + ("Pad" + ('!' if vim.eval('b:using_archive') == '1' else '') + " ls")
Expand Down

0 comments on commit 7fdf5b4

Please sign in to comment.