Skip to content
This repository has been archived by the owner on Aug 5, 2020. It is now read-only.

Commit

Permalink
fix .send_image() issue
Browse files Browse the repository at this point in the history
  • Loading branch information
youfou committed Apr 26, 2017
1 parent b890780 commit 94b82af
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion wxpy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def reply_my_friend(msg):
from .utils import BaseRequest, dont_raise_response_error, embed, ensure_one, mutual_friends

__title__ = 'wxpy'
__version__ = '0.3.8'
__version__ = '0.3.9'
__author__ = 'Youfou'
__license__ = 'MIT'
__copyright__ = '2017, Youfou'
Expand Down
2 changes: 1 addition & 1 deletion wxpy/api/chats/chat.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def do():
return func_(**kwargs_)

logger.info('sending {} to {}:\n{}'.format(
func.__name__[5:], self, attrs_['text'] or attrs_['path']))
func.__name__[5:], self, attrs_.get('text') or attrs_.get('path')))
ret_ = do()
else:
# send_raw_msg 会直接返回结果
Expand Down

0 comments on commit 94b82af

Please sign in to comment.