Add quotes for non-floats decimals (#3609)

pull/18777/head
Fabio Alessandro Locati 8 years ago committed by Matt Clay
parent d9231d065e
commit 75f9cb30e1

@ -69,7 +69,7 @@ EXAMPLES = '''
token: AAAAAA token: AAAAAA
environment: staging environment: staging
user: ansible user: ansible
revision: 4.2 revision: '4.2'
''' '''
import urllib import urllib

@ -81,20 +81,20 @@ requirements: [ ]
EXAMPLES = ''' EXAMPLES = '''
- bigpanda: - bigpanda:
component: myapp component: myapp
version: 1.3 version: '1.3'
token: '{{ bigpanda_token }}' token: '{{ bigpanda_token }}'
state: started state: started
... ...
- bigpanda: - bigpanda:
component: myapp component: myapp
version: 1.3 version: '1.3'
token: '{{ bigpanda_token }}' token: '{{ bigpanda_token }}'
state: finished state: finished
# If outside servers aren't reachable from your machine, use delegate_to and override hosts: # If outside servers aren't reachable from your machine, use delegate_to and override hosts:
- bigpanda: - bigpanda:
component: myapp component: myapp
version: 1.3 version: '1.3'
token: '{{ bigpanda_token }}' token: '{{ bigpanda_token }}'
hosts: '{{ ansible_hostname }}' hosts: '{{ ansible_hostname }}'
state: started state: started

@ -80,7 +80,7 @@ EXAMPLES = '''
token: AAAAAA token: AAAAAA
app_name: myapp app_name: myapp
user: ansible deployment user: ansible deployment
revision: 1.0 revision: '1.0'
''' '''
import urllib import urllib

@ -72,7 +72,7 @@ EXAMPLES = '''
token: AAAAAA token: AAAAAA
environment: staging environment: staging
user: ansible user: ansible
revision: 4.2 revision: '4.2'
rollbar_user: admin rollbar_user: admin
comment: Test Deploy comment: Test Deploy
''' '''

@ -102,7 +102,7 @@ EXAMPLES = '''
# Install notepadplusplus version 6.6 # Install notepadplusplus version 6.6
win_chocolatey: win_chocolatey:
name: notepadplusplus.install name: notepadplusplus.install
version: 6.6 version: '6.6'
# Uninstall git # Uninstall git
win_chocolatey: win_chocolatey:

Loading…
Cancel
Save