~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/canonical/librarian/client.py

  • Committer: Steve Kowalik
  • Date: 2011-09-13 05:23:16 UTC
  • mto: This revision was merged to the branch mainline in revision 13939.
  • Revision ID: stevenk@ubuntu.com-20110913052316-hl7fzgsklq9jakwq
Chip away at canonical.lazr a little more.

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
    urlunparse,
30
30
    )
31
31
 
 
32
from lazr.restful.utils import get_current_browser_request
32
33
from storm.store import Store
33
34
from zope.component import getUtility
34
35
from zope.interface import implements
40
41
from canonical.librarian.interfaces import (
41
42
    DownloadFailed, ILibrarianClient, IRestrictedLibrarianClient,
42
43
    LIBRARIAN_SERVER_DEFAULT_TIMEOUT, LibrarianServerError, UploadFailed)
43
 
from canonical.lazr.utils import get_current_browser_request
44
44
from lp.services.timeline.requesttimeline import get_request_timeline
45
45
 
46
46