Fixed type in kwargs extraction

This commit is contained in:
Fergal Moran
2015-08-02 15:56:50 +01:00
parent baa2d87ec0
commit bacb9b5e2e

View File

@@ -18,7 +18,7 @@ def _waveform_generated_callback(sender, **kwargs):
print "Updating model with waveform"
try:
uid = kwargs['uid']
path = kwargs['uid']
path = kwargs['path']
if uid is not None:
mix = Mix.objects.get(uid=uid)
if mix is not None: