Encourage users to put passwords in quotes.

"Fixes" issue #179.
This commit is contained in:
Tom Keffer
2016-12-05 16:06:33 -08:00
parent f3966d1d81
commit 2d6d186c06
2 changed files with 12 additions and 7 deletions

1
.gitignore vendored
View File

@@ -12,3 +12,4 @@ junk*
*.user
*.pyproj
*.suo
.DS_Store

View File

@@ -67,7 +67,8 @@ version = 3.6.1
# and specify a username and password.
enable = false
username = replace_me
password = replace_me
# To guard against parsing errors, put your password in quotes:
password = "replace_me"
[[CWOP]]
# This section is for configuring posts to CWOP.
@@ -88,7 +89,8 @@ version = 3.6.1
# and specify a station and password.
enable = false
station = replace_me
password = replace_me
# To guard against parsing errors, put your password in quotes:
password = "replace_me"
[[WOW]]
# This section is for configuring posts to WOW.
@@ -97,7 +99,8 @@ version = 3.6.1
# and specify a station and password.
enable = false
station = replace_me
password = replace_me
# To guard against parsing errors, put your password in quotes:
password = "replace_me"
[[Wunderground]]
# This section is for configuring posts to the Weather Underground.
@@ -106,7 +109,8 @@ version = 3.6.1
# and specify a station (e.g., 'KORHOODR3') and password.
enable = false
station = replace_me
password = replace_me
# To guard against parsing errors, put your password in quotes:
password = "replace_me"
# Set the following to True to have weewx use the WU "Rapidfire"
# protocol. Not all hardware can support it. See the User's Guide.
@@ -146,7 +150,7 @@ version = 3.6.1
# If you wish to use FTP, uncomment and fill out the next four lines.
#user = replace with the ftp username
#password = replace with the ftp password
#password = replace with the ftp password; put in quotes to guard against parsing errors.
#server = replace with the ftp server name, e.g, www.threefools.org
#path = replace with the ftp destination directory (e.g., /weather)
@@ -346,8 +350,8 @@ version = 3.6.1
host = localhost
# The user name for logging in to the host
user = weewx
# The password for the user name
password = weewx
# The password for the user name. Put in quotes to guard against parsing errors.
password = "weewx"
##############################################################################