Skip to content

Commit

Permalink
Merge pull request #190 from CDC-IITDH:fixing-inf
Browse files Browse the repository at this point in the history
remove json dumps
  • Loading branch information
karthikmurakonda authored Nov 10, 2023
2 parents 6c484c1 + 7c3d4f9 commit 9b14023
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CDC_Backend/APIs/companyViews.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
])
def addPlacement(request):
logger.info("JNF filled by " + str(request.data['email']))
logger.info(json.dumps(request.data))
logger.info(request.data)
try:
data = request.data
files = request.FILES
Expand Down Expand Up @@ -355,7 +355,7 @@ def autoFillInf(request):
CONTACT_PERSON_NAME, PHONE_NUMBER, EMAIL, RECAPTCHA_VALUE])
def addInternship(request):
logger.info("INF filled by " + str(request.data['email']))
logger.info(json.dumps(request.data))
logger.info(request.data)
try:
data = request.data
files = request.FILES
Expand Down

0 comments on commit 9b14023

Please sign in to comment.