Skip to content

Commit

Permalink
soft go live 5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lepto2014 committed Jul 16, 2024
1 parent 1b40223 commit 54afab9
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions code_db/python/main_multi_prod.py
Original file line number Diff line number Diff line change
@@ -4769,8 +4769,8 @@ def file_upload_v1():
# pdf_cleaned_path = os.getcwd() + "/uploads/" + name
pdf_cleaned_path = file_write_path
try:
start_page = (str(request.form["start_page"]))
end_page = (str(request.form["end_page"]))
start_page = int(str(request.form["start_page"]))
end_page = int(str(request.form["end_page"]))

print("start_page :", start_page)
print("end_page :", end_page)
2 changes: 1 addition & 1 deletion utils/graph_utils/networkx/createGraphEntry.py
Original file line number Diff line number Diff line change
@@ -30,7 +30,7 @@ def createNodes( self, fnm, all_methods_data_arr, file_level_api_calls_ ):

self.graph_.add_node(
key_,
file_path=fnm,\
file_path=fnm if './' in fnm else ( './' + fnm ),\
method_name=data["method_name"], \
method_begin=data["method_begin"], \
method_end=data["method_end"],\

0 comments on commit 54afab9

Please sign in to comment.