sqlite: fix impl of DatabaseError

This commit is contained in:
Ryan Leckey 2020-03-16 19:54:24 -07:00
parent e99e80cf94
commit 57d414f15c

View File

@ -46,6 +46,6 @@ impl DatabaseError for SqliteError {
}
fn code(&self) -> Option<&str> {
&self.code
Some(&self.code)
}
}