aboutsummaryrefslogtreecommitdiffstats
path: root/gsxws/core.py
diff options
context:
space:
mode:
Diffstat (limited to 'gsxws/core.py')
-rw-r--r--gsxws/core.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/gsxws/core.py b/gsxws/core.py
index b2d9b89..4e35c76 100644
--- a/gsxws/core.py
+++ b/gsxws/core.py
@@ -292,9 +292,11 @@ class GsxObject(object):
super(GsxObject, self).__setattr__(name, value)
return
+ # Kind of a lame way to identify files, but it's the best
+ # we have for Django's File class right now...
if hasattr(value, "fileno"):
if not hasattr(self, "fileName"):
- super(GsxObject, self).__setattr__("fileName", value.name)
+ self.fileName = value.name
value = base64.b64encode(value.read())