remove prints

This commit is contained in:
bkfox 2022-01-19 14:34:57 +01:00
parent 69a65379c3
commit dae68618b2

View File

@ -139,7 +139,6 @@ class SoundFile:
rerun. rerun.
""" """
pi = self.path_info pi = self.path_info
print('find episode', pi, self.sound, self.sound and self.sound.episode)
if 'year' not in pi or not self.sound or self.sound.episode: if 'year' not in pi or not self.sound or self.sound.episode:
return None return None
@ -151,7 +150,6 @@ class SoundFile:
date = datetime.date(pi.get('year'), pi.get('month'), pi.get('day')) date = datetime.date(pi.get('year'), pi.get('month'), pi.get('day'))
diffusion = program.diffusion_set.at(date).first() diffusion = program.diffusion_set.at(date).first()
print('related diffusion', date, diffusion)
if not diffusion: if not diffusion:
return None return None