Skip to content

Commit

Permalink
Release 1.15.1; Fix a compatibility error with the latest version of …
Browse files Browse the repository at this point in the history
…the jira library.
  • Loading branch information
coddingtonbear committed Oct 11, 2015
1 parent 087902c commit 2a6c9db
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion jirafs/__init__.py
@@ -1 +1 @@
__version__ = '1.15'
__version__ = '1.15.1'
5 changes: 4 additions & 1 deletion jirafs/cmdline.py
Expand Up @@ -9,7 +9,10 @@
import time

from blessings import Terminal
from jira.utils import JIRAError
try:
from jira.utils import JIRAError
except ImportError:
from jira.exceptions import JIRAError
import six
from six.moves import shlex_quote
from verlib import NormalizedVersion
Expand Down

0 comments on commit 2a6c9db

Please sign in to comment.