Skip to content

Commit d2cb6c7

Browse files
extension message.
1 parent f8a19a2 commit d2cb6c7

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

main.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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)

scraper.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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)

0 commit comments

Comments
 (0)