Django Save Error
for *** : try: xx = A( a=x, b=y ) xx.save() except: pass here is my question: once one of the 'xx' saved error, others will not
Solution 1:
You catch every exception with this statement:
except:
pass
GeneratorExit is just an exception. This should not be caught. Please catch only the exceptions, you expect.
Post a Comment for "Django Save Error"