~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:57:48 UTC
  • mto: This revision was merged to the branch mainline in revision 14581.
  • Revision ID: william.grant@canonical.com-20111222055748-q1agvzjfdro39o7p
Move the librarian apache log parser to lp.services.librarian. Its time in lp.services.apachelogparser was short.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
from zope.component import getUtility
23
23
 
24
24
from canonical.config import config
25
 
from lp.services.apachelogparser.librarian_apache_log_parser import (
 
25
from lp.services.apachelogparser.script import ParseApacheLogs
 
26
from lp.services.librarian.apachelogparser import (
26
27
    DBUSER,
27
28
    get_library_file_id,
28
29
    )
29
 
from lp.services.apachelogparser.script import ParseApacheLogs
30
30
from lp.services.librarian.interfaces import ILibraryFileAliasSet
31
31
 
32
32