Skip to content

Commit

Permalink
Update Messaging when getting community comments
Browse files Browse the repository at this point in the history
Changed 'downloading' to 'loading' when getting community post comments.
  • Loading branch information
ThioJoe committed Dec 28, 2021
1 parent b3b4ab9 commit 08504b1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions community_downloader.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,9 +151,9 @@ def main(communityPostID=None, limit=1000, sort=SORT_BY_RECENT, language=None):
if not communityPostID:
raise ValueError('you need to specify a Youtube ID')

print('Downloading Youtube comments for post:', communityPostID)
print('Loading Youtube comments for post:', communityPostID)
count = 0
sys.stdout.write('Downloaded %d comment(s)\r' % count)
sys.stdout.write('Loaded %d comment(s)\r' % count)
sys.stdout.flush()
start_time = time.time()

Expand Down

0 comments on commit 08504b1

Please sign in to comment.