We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c5010b8 commit 8b95e92Copy full SHA for 8b95e92
1 file changed
Form1.cs
@@ -177,7 +177,7 @@ private void buttonOK_Click(object sender, EventArgs e)
177
private void SaveBook(Book book)
178
{
179
Log("Saving book : " + book.ToString());
180
- string path = "Sanitize(book.Parent.Author) + @"\" + Sanitize(book.Parent.Name);
+ string path = Sanitize(book.Parent.Author) + @"\" + Sanitize(book.Parent.Name);
181
Directory.CreateDirectory(RootPath + path);
182
Stream stream = File.Create(RootPath + path + @"\" + Sanitize(book.Revision) + " - " + Sanitize(book.Format) + ".url");
183
StreamWriter sw = new StreamWriter(stream);
0 commit comments