Skip to content

Commit

Permalink
Fixed a typo in the ERCOT data downloader routine
Browse files Browse the repository at this point in the history
  • Loading branch information
rconcep committed May 3, 2019
1 parent d1c72b8 commit 393baff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion es_gui/apps/data_manager/widgets.py
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ def _download_ercot_data(self, year='all', typedat='both', foldersave=os.path.jo
try:
# Retrieve the webpage and parse for .zip files.
page = requests.get(urlERCOT_list_x, timeout=10, proxies=proxy_settings, verify=ssl_verify)
soup_ERCOT_page = BeautifulSoup(pssage.content, 'html.parser')
soup_ERCOT_page = BeautifulSoup(page.content, 'html.parser')

zipfileslinks_ERCOT_page = []
for link in soup_ERCOT_page.find_all('a'):
Expand Down

0 comments on commit 393baff

Please sign in to comment.