diff options
| author | Guillaume Horel <guillaume.horel@gmail.com> | 2011-05-02 01:13:07 -0400 |
|---|---|---|
| committer | Guillaume Horel <guillaume.horel@gmail.com> | 2011-05-02 01:13:07 -0400 |
| commit | 1bf4b8e5506c1b76fa453e1ae645410a09934c76 (patch) | |
| tree | 7f7de1e8cd2f581adce05ce5ea3d7243f25dcf65 /server/object.py | |
| parent | cc1baf75ab6967f567917ae3486c0275a64937d5 (diff) | |
| download | alias-1bf4b8e5506c1b76fa453e1ae645410a09934c76.tar.gz | |
In-band registration is almost functional.
-still need to hook up the data with the backend
-and check all the error cases
Diffstat (limited to 'server/object.py')
| -rw-r--r-- | server/object.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/object.py b/server/object.py index 7a2e46f..5773f4f 100644 --- a/server/object.py +++ b/server/object.py @@ -98,7 +98,7 @@ class ObjectReader(Object): pass class ObjectWriter(Object): - def __init__(self, owner, hash = None, content): + def __init__(self, owner, hash = None): Object.__init__(self, owner, hash) if not os.path.exists(self.owner_path): logger.error("User {} is not registered".format(self.owner)) |
