X-Git-Url: http://git.veekun.com/zzz-floof.git/blobdiff_plain/d4609fff2bfd910366c41116f1da35e4037da7d4..HEAD:/floof/lib/dbhelpers.py diff --git a/floof/lib/dbhelpers.py b/floof/lib/dbhelpers.py index 0da968b..23fd3b4 100644 --- a/floof/lib/dbhelpers.py +++ b/floof/lib/dbhelpers.py @@ -3,7 +3,7 @@ def find_or_create(model, **kwargs): if not instance: instance = model(**kwargs) return instance - + def update_or_create(model, get_by, update_with): instance = model.get_by(**get_by) if instance: