Issue with weather binding

I can’t seem to get weather binding working for the life of me.
Here is my setup

weather:location.home.name=Home
weather:location.home.latitude=xx.xx
weather:location.home.longitude=-xxx.xx
weather:location.home.provider=Yahoo
weather:location.home.language=en
weather:location.home.updateInterval=10

Number Home_WU “Temperature [%.2f °F]” {weather="locationId=“home, type=temperature, property=current, unit=fahrenheit”}

Frame label=“Weather” {
Text item=Home_WU label=“Currently [%.2f °F]” icon=“temperature”
}

Log File
There is more but the error itself is
2015-10-21 23:11:21.573 [ERROR] [i.internal.GenericItemProvider] - Binding configuration of type ‘weather’ of item ‘Home_WU‘ could not be parsed correctly.
org.openhab.model.item.binding.BindingConfigParseException: A bindingConfig must have a key and a value

There’s an additional quote behind locationId=, which breaks the syntax.

Try:

Number Home_WU "Temperature [%.2f °F]" {weather="locationId=Home, type=temperature, property=current, unit=fahrenheit"}

Thank you!!! Those sneaky quotes! I sent a lot of time on this lol.