Skip to content

Commit

Permalink
Fix lower() chars in wcolor
Browse files Browse the repository at this point in the history
Signed-off-by: starry69 <starry369126@outlook.com>
  • Loading branch information
starry-shivam committed Jun 28, 2020
1 parent 0dd30c9 commit 57eeef6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion starrybot.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ def wall(update, context):
@send_action(upload)
def wallcolor(update, context):
msg = update.effective_message
color = context.args[0]
color = context.args[0].lower()

if not color:
return msg.reply_text(s.NO_ARGS)
Expand Down

0 comments on commit 57eeef6

Please sign in to comment.