Skip to content

Commit

Permalink
Fixed error calls in exception handlers
Browse files Browse the repository at this point in the history
  • Loading branch information
vlasovskikh committed Mar 11, 2011
1 parent 291108a commit 8e2cb20
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions convoread/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
from convoread.config import config
from convoread.console import Console
from convoread.notify import Notifier
from convoread.utils import error

__version__ = b'0.5'

Expand Down
2 changes: 1 addition & 1 deletion convoread/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
try:
import readline
except ImportError:
error('readline module not available')
print('readline module not available', file=sys.stderr)
readline = None


Expand Down

0 comments on commit 8e2cb20

Please sign in to comment.