diff options
-rw-r--r-- | tbc/views.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tbc/views.py b/tbc/views.py index ae29aaa..1e5d0cf 100644 --- a/tbc/views.py +++ b/tbc/views.py @@ -256,6 +256,7 @@ def ApproveBook(request, book_id=None): zip_path = "/"+zip_path+"/Python-Textbook-Companions/" file_path = file_path+"/static/uploads/" directory = file_path+book.contributor.user.first_name + os.chmod(directory, 0777) os.chdir(directory) fp = open(book.title+"/README.txt", 'w') fp.write("Contributed By: "+book.contributor.user.first_name+" "+book.contributor.user.last_name+"\n") @@ -270,11 +271,11 @@ def ApproveBook(request, book_id=None): fp.write("Edition: "+book.edition) fp.close() os.popen("cp -r "+book.title+" "+zip_path) - """os.chdir(zip_path) + os.chdir(zip_path) os.popen("git add .") commit_msg = "adding "+book.title os.popen("git commit -m "+commit_msg) - os.popen("git push")""" + os.popen("git push") context['user'] = user return HttpResponseRedirect("/book-review") elif request.method == 'POST' and request.POST['approve_notify'] == "notify": |