fixed Error string

Former-commit-id: bbdc064528
This commit is contained in:
Joshua Chin 2015-07-07 14:51:46 -04:00
parent d875aa8842
commit 0308246e72

View File

@ -198,7 +198,7 @@ def cB_to_freq(cB):
"""
if cB > 0:
raise ValueError(
"A frequency cannot be a positive number of decibels."
"A frequency cannot be a positive number of centibels."
)
return 10 ** (cB / 100)