Merge pull request #563 from bvssvni/remove_dot

Removed dot in error message
This commit is contained in:
tomaka 2015-08-05 12:43:52 +02:00
commit 4ab83a23e5

View file

@ -155,7 +155,7 @@ impl ContextError {
use std::error::Error; use std::error::Error;
match *self { match *self {
ContextError::IoError(ref err) => err.description(), ContextError::IoError(ref err) => err.description(),
ContextError::ContextLost => "Context lost." ContextError::ContextLost => "Context lost"
} }
} }
} }