Skip to content

Commit

Permalink
History of grep directory was broken.
Browse files Browse the repository at this point in the history
  • Loading branch information
ishimoto committed Mar 24, 2015
1 parent 546a6d5 commit ae074d3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion kaa/ui/grep/grepdlgmode.py
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,8 @@ def run_grep(self, wnd):
self.option.filenames):

kaa.app.config.hist('grep_text').add(self.option.text)
path = os.path.abspath(self.option.directory)
path = os.path.abspath(os.path.expanduser(
self.option.directory))
kaa.app.config.hist('grep_dirname').add(path)
kaa.app.config.hist('grep_filename').add(self.option.filenames)

Expand Down

0 comments on commit ae074d3

Please sign in to comment.