Skip to content

Commit 8b95e92

Browse files
IReboIRebo
authored andcommitted
ups
1 parent c5010b8 commit 8b95e92

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Form1.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ private void buttonOK_Click(object sender, EventArgs e)
177177
private void SaveBook(Book book)
178178
{
179179
Log("Saving book : " + book.ToString());
180-
string path = "Sanitize(book.Parent.Author) + @"\" + Sanitize(book.Parent.Name);
180+
string path = Sanitize(book.Parent.Author) + @"\" + Sanitize(book.Parent.Name);
181181
Directory.CreateDirectory(RootPath + path);
182182
Stream stream = File.Create(RootPath + path + @"\" + Sanitize(book.Revision) + " - " + Sanitize(book.Format) + ".url");
183183
StreamWriter sw = new StreamWriter(stream);

0 commit comments

Comments
 (0)