Oops, fix --no-default-features compilation

This commit is contained in:
Ben S 2015-01-28 16:53:13 +00:00
parent e86f0e12bf
commit be9eefe44b

View File

@ -150,4 +150,8 @@ impl Git {
// The Err above means that this should never happen
panic!("Tried to access a Git repo without Git support!");
}
fn dir_status(&self, path: &Path) -> String {
self.status(path)
}
}