File tree Expand file tree Collapse file tree 2 files changed +2
-0
lines changed
Expand file tree Collapse file tree 2 files changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ def main():
2121 print (DECOR + 'Requesting page...' )
2222 course_page = scraper .session .get (download_url , headers = HEADERS )
2323 print (DECOR + 'Parsing page into a soup...' )
24+ print (DECOR + f"I'll download { EXTENSIONS } files." )
2425 soup = BeautifulSoup (course_page .text , 'html.parser' )
2526
2627 nav_dict = scraper .create_nav_links_dictionary (soup )
Original file line number Diff line number Diff line change @@ -85,6 +85,7 @@ def choose_course(self, courses):
8585
8686 def choose_folder (self ):
8787 folder = os .path .expanduser ("~" ) + FOLDER
88+ # TODO let the system figure out the directory.
8889 if self .args .folder :
8990 if '~' in self .args .folder :
9091 self .args .folder = os .path .expanduser (args .folder )
You can’t perform that action at this time.
0 commit comments