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

Commit

Permalink
fixed : TypeError: must be str, not NoneType
Browse files Browse the repository at this point in the history
  • Loading branch information
foxmask committed Oct 16, 2017
1 parent 6c646be commit b2eccf3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion th_slack/my_slack.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def save_data(self, trigger_id, **data):
title = self.set_title(data)
if title is None:
title = data.get('subject')
type_action = data.get('type_action')
type_action = data.get('type_action', '')

# set the bot username of Slack to the name of the
# provider service
Expand Down

0 comments on commit b2eccf3

Please sign in to comment.