Skip to content

Commit 4550a0e

Browse files
committed
Remove double dot
1 parent deb6471 commit 4550a0e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/SQLScriptsExplorer.Addin/Infrastructure/DocumentManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public static void OpenTemplate(string fileName, string fileFullPath)
3434
var docName = Path.GetFileNameWithoutExtension(fileName);
3535
var docExtension = Path.GetExtension(fileName);
3636

37-
var fileDocument = DTE.ItemOperations.NewFile(@"General\Text File", $"{docName}_Copy.{docExtension}").Document;
37+
var fileDocument = DTE.ItemOperations.NewFile(@"General\Text File", $"{docName}_Copy{docExtension}").Document;
3838

3939
TextSelection textSelection = fileDocument.Selection as TextSelection;
4040
textSelection.SelectAll();

0 commit comments

Comments
 (0)