sachinas / django-reporting

Automatically exported from code.google.com/p/django-reporting
0 stars 0 forks source link

Typo in error Exception text #14

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
base.py line 253:

raise Exception("Couldnot resove '%s' into value" % attr)

should be:

raise Exception("Could not resolve '%s' into value" % attr)

Original issue reported on code.google.com by andybak on 27 Jan 2010 at 9:51

GoogleCodeExporter commented 9 years ago
Also base.py line 42:

GROUP_BY_VAR = 'gruop_by_'

should be:

GROUP_BY_VAR = 'group_by_'

Original comment by andybak on 27 Jan 2010 at 10:04