Skip to content

Commit

Permalink
Docs standardization
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael DeHaan committed Jun 1, 2013
1 parent 6b0a547 commit 2a416ba
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions library/notification/hipchat
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ options:
description:
- notify or not (change the tab color, play a sound, etc)
required: false
default: true
choices: [ "true", "false" ]
default: 'yes'
choices: [ "yes", "no" ]
# informational: requirements for nodes
requirements: [ urllib, urllib2 ]
Expand Down Expand Up @@ -116,7 +116,7 @@ def main():
color=dict(default="yellow", choices=["yellow", "red", "green",
"purple", "gray", "random"]),
msg_format=dict(default="text", choices=["text", "html"]),
notify=dict(default=True, choices=BOOLEANS),
notify=dict(default=True, type='bool'),
),
supports_check_mode=True
)
Expand Down

0 comments on commit 2a416ba

Please sign in to comment.