summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xtbc/views.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tbc/views.py b/tbc/views.py
index 7793921..5a8cb89 100755
--- a/tbc/views.py
+++ b/tbc/views.py
@@ -1075,7 +1075,7 @@ def ApproveBook(request, book_id=None):
book = Book.objects.get(id=book_id)
file_path = local.path
book_title = book.title.replace(" ", "_")
- book_title = book.title +'_by_'+book.author.replace(" ", "_")
+ book_title = book_title +'_by_'+book.author.replace(" ", "_")
directory = file_path+book_title
os.chdir(directory)
fp = open(directory+"/README.txt", 'w')