X-Git-Url: http://git.veekun.com/zzz-floof.git/blobdiff_plain/f7617496a08f10a77eb909982dae4e995c132900..ef69b26ffcf9185496775bcf73384ea3a5e5691c:/floof/model/art.py?ds=inline diff --git a/floof/model/art.py b/floof/model/art.py index e78de41..1df10cc 100644 --- a/floof/model/art.py +++ b/floof/model/art.py @@ -4,7 +4,7 @@ # Copyright (c) 2009 Scribblr # -from elixir import Entity, Field, Integer, Unicode +# from elixir import Entity, Field, Integer, Unicode from elixir import * from pylons import config @@ -15,13 +15,12 @@ class Art(Entity): title = Field(Unicode(120)) original_filename = Field(Unicode(120)) hash = Field(String) + uploaded_by = ManyToOne('User') def __init__(self, **kwargs): # I wanted to check for the existence of the file, but... # for some reason this FieldStorage object always conditions as falsey. self.hash = save_file("art", kwargs.pop('file')) - - super(Art, self).__init__(**kwargs) # this is what super is doing, pretty much. # for key, value in kwargs.items():