aboutsummaryrefslogtreecommitdiff
path: root/dashboard_app/xmlrpc.py
diff options
context:
space:
mode:
authorZygmunt Krynicki <zygmunt.krynicki@linaro.org>2010-09-17 10:10:35 +0200
committerZygmunt Krynicki <zygmunt.krynicki@linaro.org>2010-09-17 10:10:35 +0200
commit0309db2023daa3d02e22ff0a4d85df3e4172558a (patch)
tree81318f3813959beecb7f046295a547085e1b2aa8 /dashboard_app/xmlrpc.py
parent9d6c460634565d31dfdc8b57d3fdf143b269ee25 (diff)
Deserialize bundles on upload
Diffstat (limited to 'dashboard_app/xmlrpc.py')
-rw-r--r--dashboard_app/xmlrpc.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/dashboard_app/xmlrpc.py b/dashboard_app/xmlrpc.py
index 46b73876f..46c0ece8a 100644
--- a/dashboard_app/xmlrpc.py
+++ b/dashboard_app/xmlrpc.py
@@ -135,7 +135,7 @@ class DashboardAPI(object):
bundle.save()
bundle.content.save("bundle-{0}".format(bundle.pk),
ContentFile(content))
- bundle.save()
+ bundle.deserialize()
except IntegrityError:
bundle.delete()
raise xmlrpclib.Fault(errors.CONFLICT,