From 9b0220201a73a926582b0abb2ec570d92b73ef6c Mon Sep 17 00:00:00 2001 From: bkfox Date: Mon, 12 Feb 2018 01:54:43 +0100 Subject: [PATCH] fix typo error --- aircox/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aircox/models.py b/aircox/models.py index 31c49b4..039171c 100755 --- a/aircox/models.py +++ b/aircox/models.py @@ -915,7 +915,7 @@ class Diffusion(models.Model): Returns sounds as a playlist (list of *local* file path). The given arguments are passed to ``get_sounds``. """ - return list(self.get_sounds(archives = True) \ + return list(self.get_sounds(**type) \ .filter(path__isnull = False) \ .values_list('path', flat = True))