From 462f03f52e58c16404ab33b18700770458f9b5bc Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Sun, 26 Jun 2016 21:02:46 -0700 Subject: [PATCH] [SimpleSort] Full path is sometimes too long... --- SimpleSort/SimpleSort.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SimpleSort/SimpleSort.cs b/SimpleSort/SimpleSort.cs index 605aa5ae..d4f3fc3c 100644 --- a/SimpleSort/SimpleSort.cs +++ b/SimpleSort/SimpleSort.cs @@ -347,7 +347,7 @@ namespace SabreTools bool success = true; // Get the full path of the input for movement purposes - string statement = "\r" + (100 * index / total) + "% - " + input; + string statement = "\r" + (100 * index / total) + "% - " + Path.GetFileName(input); _logger.LogExact(statement.PadRight(79, ' ')); // Get if the file should be scanned internally and externally