Skip to content

Commit

Permalink
patch path
Browse files Browse the repository at this point in the history
  • Loading branch information
wyzmlr committed Oct 27, 2021
1 parent 031b251 commit c2fb8ee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/src.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,10 +110,10 @@ def send_param(self, origin_dict: Dict, method: str, path: str) -> None:
proxies=self._get_proxy())

if 'parameters' in origin_dict.keys():
row = [self._project_path, summary, path, method, consumes, path,
row = [self._project_path, summary, path, method, consumes, self._base_path+path,
str(len(origin_dict['parameters'])), json_string, res.status_code, res.text]
else:
row = [self._project_path, summary, path, method, consumes, path, '0', json_string,
row = [self._project_path, summary, path, method, consumes, self._base_path+path, '0', json_string,
res.status_code,
res.text]
self.writer.writerow(row)
Expand Down

0 comments on commit c2fb8ee

Please sign in to comment.