~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to cronscripts/parse-librarian-apache-access-logs.py

  • Committer: William Grant
  • Date: 2011-12-22 05:37:22 UTC
  • mto: This revision was merged to the branch mainline in revision 14581.
  • Revision ID: william.grant@canonical.com-20111222053722-gm6h9zi3lioz00ky
Move librarian stuff from canonical.launchpad to lp.services.librarian. canonical.librarian remains untouched.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 
19
19
# pylint: disable-msg=W0403
20
20
import _pythonpath
21
 
 
 
21
from storm.sqlobject import SQLObjectNotFound
22
22
from zope.component import getUtility
23
23
 
24
 
from storm.sqlobject import SQLObjectNotFound
25
 
 
26
24
from canonical.config import config
27
 
from canonical.launchpad.interfaces.librarian import ILibraryFileAliasSet
28
25
from lp.services.apachelogparser.librarian_apache_log_parser import (
29
 
    DBUSER, get_library_file_id)
 
26
    DBUSER,
 
27
    get_library_file_id,
 
28
    )
30
29
from lp.services.apachelogparser.script import ParseApacheLogs
 
30
from lp.services.librarian.interfaces import ILibraryFileAliasSet
31
31
 
32
32
 
33
33
class ParseLibrarianApacheLogs(ParseApacheLogs):