Coerce advice to a string in ChecksumMismatchError

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
This commit is contained in:
Jack Nagel 2012-07-17 11:30:28 -05:00
parent c71002a4a3
commit 9f6a16eccd

View File

@ -173,6 +173,6 @@ class ChecksumMismatchError < RuntimeError
end
def to_s
super + advice
super + advice.to_s
end
end