Fix small typo in debug logs

This commit is contained in:
2023-01-08 23:10:24 -05:00
parent 27ffd35826
commit 657b194dc7

View File

@ -96,6 +96,6 @@ class Track(TimeStampedModel):
if created:
logger.debug(f"Created new track: {track}")
else:
logger.debug(f"Found track{track}")
logger.debug(f"Found track {track}")
return track