Fix: Add missing dash

This commit is contained in:
Matthias Beyer 2015-12-28 00:29:21 +01:00
parent 23e4152aaa
commit 0212fb1929
1 changed files with 1 additions and 1 deletions

View File

@ -105,7 +105,7 @@ impl Into<String> for FileID {
fn into(self) -> String {
let typestr : String = self.id_type.into();
let idstr : String = self.id.into();
typestr + &idstr[..]
typestr + "-" + &idstr[..]
}
}