Skip to content

Commit

Permalink
clean up debug code
Browse files Browse the repository at this point in the history
  • Loading branch information
meeb committed Sep 19, 2023
1 parent 7db71e9 commit 6a94034
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
3 changes: 0 additions & 3 deletions bandcampsync/bandcamp.py
Original file line number Diff line number Diff line change
Expand Up @@ -222,9 +222,6 @@ def load_purchases(self):
item_data['download_url'] = download_url
item = BandcampItem(item_data)
token = item.token
if item.item_type == 'album':
log.info(f'Skipping album')
continue
log.info(f'Found item: {item.band_name} / {item.item_title} (id:{item.item_id})')
self.purchases.append(item)
log.info(f'Loaded {len(self.purchases)} purchases')
Expand Down
1 change: 0 additions & 1 deletion bandcampsync/download.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@


def mask_sig(url):
return url
if '&sig=' not in url:
return url
url_parts = url.split('&')
Expand Down

0 comments on commit 6a94034

Please sign in to comment.