From 7cb7c089fa7abbff1769ed16c4af649716a7d456 Mon Sep 17 00:00:00 2001 From: Andreas Dieckmann Date: Wed, 7 Oct 2015 05:58:10 +0200 Subject: [PATCH] Revert "fix for #7" This reverts commit 1241fb4ca205ebe8315d1e6fdace9a947914d95a. --- src/ProcessRunner/Journal.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ProcessRunner/Journal.cs b/src/ProcessRunner/Journal.cs index 8cf2ee2..1484355 100644 --- a/src/ProcessRunner/Journal.cs +++ b/src/ProcessRunner/Journal.cs @@ -43,7 +43,7 @@ public static string ByWorkspacePath(string revitFilePath, string workspacePath, "Jrn.Command \"Internal\" , \"Flush undo and redo stacks , ID_FLUSH_UNDO\" \n" + "Jrn.Command \"Internal\" , \"Close the active project , ID_REVIT_FILE_CLOSE\" \n" + "Jrn.Command \"SystemMenu\" , \"Quit the application; prompts to save projects , ID_APP_EXIT\"", - revitFilePath, workspacePath.Replace(' ', '/')); + revitFilePath.Replace(' ', '/'), workspacePath.Replace(' ', '/')); tw.Write(journal); tw.Flush();