Ignore errors on updating corporation details, avoids the DS1 issue for the moment

This commit is contained in:
2010-04-02 20:03:08 +01:00
parent ef65dfe145
commit ffe0799502

View File

@@ -31,4 +31,8 @@ class UpdateAPIs():
acc.save()
for corp in EVEPlayerCorporation.objects.all():
corp.query_and_update_corp()
try:
corp.query_and_update_corp()
except:
self._logger.error('Error updating %s' % corp)
continue