From f609b16083a28e411bd38ec72e0f0ba075e7993d Mon Sep 17 00:00:00 2001 From: Hylke Bons Date: Fri, 14 Dec 2012 10:29:35 +0100 Subject: [PATCH] keys: use underscore instead of a space in the key name --- SparkleShare/SparkleControllerBase.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SparkleShare/SparkleControllerBase.cs b/SparkleShare/SparkleControllerBase.cs index c5dfb4fc..5206779e 100644 --- a/SparkleShare/SparkleControllerBase.cs +++ b/SparkleShare/SparkleControllerBase.cs @@ -253,7 +253,7 @@ namespace SparkleShare { new Thread (() => { string keys_path = Path.GetDirectoryName (SparkleConfig.DefaultConfig.FullPath); - string key_file_name = DateTime.Now.ToString ("yyyy-MM-dd HH\\hmm"); + string key_file_name = DateTime.Now.ToString ("yyyy-MM-dd_HH\\hmm"); string [] key_pair = SparkleKeys.GenerateKeyPair (keys_path, key_file_name); SparkleKeys.ImportPrivateKey (key_pair [0]);