Skip to content

Commit

Permalink
Add try/except for if the user has not simplesjson egg installed
Browse files Browse the repository at this point in the history
  • Loading branch information
goinnn committed Oct 29, 2012
1 parent 534fbb9 commit 32dc991
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
4 changes: 3 additions & 1 deletion CHANGES
Expand Up @@ -4,7 +4,9 @@ Releases
0.1.8 (2012-09-02)
-------------------

* Fix an error in jQuery autocomplete and js autocomplete, broken `in this commit <https://github.com/goinnn/Kate-plugins/commit/de7453f94341f84f5fab36d277a7f8383e961121>`>_
* Fix an error in jQuery autocomplete and js autocomplete, broken `in this commit <https://github.com/goinnn/Kate-plugins/commit/de7453f94341f84f5fab36d277a7f8383e961121>`_
* Add try/except for if the user has not simplesjson egg installed


0.1.7 (2012-09-02)
-------------------
Expand Down
5 changes: 4 additions & 1 deletion kate_plugins/kate_plugins.py
Expand Up @@ -16,7 +16,10 @@

from jste_plugins.autocomplete import *
from jste_plugins.jquery_plugins import *
from jste_plugins.json_plugins import *
try:
from jste_plugins.json_plugins import *
except ImportError:
pass
try:
from jste_plugins.jslint_plugins import *
except ImportError:
Expand Down

0 comments on commit 32dc991

Please sign in to comment.