an empty string is better than a nil type-error (found by playing around, not

from a faulty module or whathaveyou)


git-svn-id: file:///home/svn/framework3/trunk@5878 4d416f70-5f16-0410-b530-b9f4589650da
unstable
kris 2008-11-11 04:01:21 +00:00
parent 2380efac65
commit aba3f95026
1 changed files with 2 additions and 2 deletions

View File

@ -835,11 +835,11 @@ end
class LoginError < SimpleClientError
def to_s
"Login Failed: " + self.source
"Login Failed: " + self.source.to_s
end
end
end
end
end
end
end