Skip to content

Commit

Permalink
Merge pull request #8 from rveachkc/develop
Browse files Browse the repository at this point in the history
v 0.1.3 - color fix
  • Loading branch information
rveachkc authored Jan 16, 2018
2 parents 70a69a8 + 9bb0a29 commit 44e030e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pymsteams/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def color(self, mcolor):
if mcolor.lower() == "red":
self.payload["themeColor"] = "E81123"
else:
self.payload["themeColor"] = themeColor
self.payload["themeColor"] = mcolor

def addLinkButton(self, buttontext, buttonurl):
if "potentialAction" not in self.payload:
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
setup(
name = 'pymsteams',
packages = ['pymsteams'],
version = '0.1.2',
version = '0.1.3',
description = 'Format messages and post to Microsoft Teams.',
author = 'Ryan Veach',
author_email = '[email protected]',
url = 'https://github.com/rveachkc/pymsteams',
download_url = 'https://github.com/rveachkc/pymsteams/archive/0.1.2.tar.gz',
download_url = 'https://github.com/rveachkc/pymsteams/archive/0.1.3.tar.gz',
keywords = ['Microsoft', 'Teams'], # arbitrary keywords
classifiers = [],
install_requires=['requests'],
Expand Down

0 comments on commit 44e030e

Please sign in to comment.