Skip to content

Commit

Permalink
Fix #10 TypeError when using ctrl+alt+o
Browse files Browse the repository at this point in the history
  • Loading branch information
gerardroche committed Sep 2, 2018
1 parent a641245 commit 7d4f64b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes are documented in this file using the [Keep a CHANGELOG](http://keepachangelog.com/) principles.

## [2.0.1] - 2018-09-02

* Fixed [#10](https://github.com/gerardroche/sublime-open-sesame/issues/10): TypeError when using `CTRL+ALT+o`

## [2.0.0] - 2018-06-17

### Added
Expand Down Expand Up @@ -228,6 +232,7 @@ Old settings `open-sesame.*` have been renamed `sesame.*`, these will be auto mi

* Initial import

[2.0.1]: https://github.com/gerardroche/sublime-open-sesame/compare/2.0.0...2.0.1
[2.0.0]: https://github.com/gerardroche/sublime-open-sesame/compare/1.8.0...2.0.0
[1.8.0]: https://github.com/gerardroche/sublime-open-sesame/compare/1.7.0...1.8.0
[1.7.0]: https://github.com/gerardroche/sublime-open-sesame/compare/1.6.0...1.7.0
Expand Down
2 changes: 1 addition & 1 deletion plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ def _find_folders(window, **kwargs):
return []

defaults = {
"depth": int(kwargs.get('depth', settings.get('sesame.depth'))),
"depth": int(kwargs.get('depth', settings.get('sesame.depth', 2))),
"vcs": kwargs.get('vcs', settings.get('sesame.vcs'))
}

Expand Down

0 comments on commit 7d4f64b

Please sign in to comment.