drop-upload: rename 'start' method to 'startService', which is what you're supposed to use to start a Service. refs #1429

This commit is contained in:
david-sarah
2011-08-09 20:03:45 -07:00
parent f157b73367
commit 10ee22f50e
3 changed files with 4 additions and 3 deletions

View File

@ -432,7 +432,7 @@ class Client(node.Node, pollmixin.PollMixin):
from allmydata.frontends import drop_upload
s = drop_upload.DropUploader(self, upload_dircap, local_dir_utf8)
s.setServiceParent(self)
s.start()
s.startService()
except Exception, e:
self.log("couldn't start drop-uploader: %r", args=(e,))
else: