From 0212fb1929e751a8e82dbc2294d3e6cff38c9687 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Mon, 28 Dec 2015 00:29:21 +0100 Subject: [PATCH] Fix: Add missing dash --- src/storage/file/id.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/storage/file/id.rs b/src/storage/file/id.rs index bdfd9db4..d26b537b 100644 --- a/src/storage/file/id.rs +++ b/src/storage/file/id.rs @@ -105,7 +105,7 @@ impl Into for FileID { fn into(self) -> String { let typestr : String = self.id_type.into(); let idstr : String = self.id.into(); - typestr + &idstr[..] + typestr + "-" + &idstr[..] } }