spacepaste

  1.  
  2. .....
  3. self.logger.info("decrypting encrypted tracks")
  4. self.logger.info("note: does not do this in parallel since we're IO bound anyway")
  5. input('press enter when ready to continue: ')
  6. enc_tracks = [x for x in [vt] + ats if x.encrypted]
  7. for track in enc_tracks:
  8. .....
  9.