~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to scripts/script-monitor.py

  • Committer: Launchpad Patch Queue Manager
  • Date: 2011-12-09 09:23:38 UTC
  • mfrom: (14333.2.13 history-model)
  • Revision ID: launchpad@pqm.canonical.com-20111209092338-se7u5l0skqzaes1v
[r=jcsackett][bug=295214, 894836,
 898200] Keep sort button ob bug listing pages in sync with the
 displayed data

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
__metaclass__ = type
9
9
__all__ = ['check_script']
10
10
 
11
 
import _pythonpath
12
 
 
13
11
from datetime import (
14
12
    datetime,
15
13
    timedelta,
20
18
import sys
21
19
from time import strftime
22
20
 
23
 
from lp.scripts.scriptmonitor import check_script
24
 
from lp.services.database.sqlbase import connect
25
 
from lp.services.scripts import (
 
21
import _pythonpath
 
22
 
 
23
from canonical.database.sqlbase import connect
 
24
from canonical.launchpad.scripts import (
26
25
    db_options,
27
26
    logger,
28
27
    logger_options,
29
28
    )
 
29
from canonical.launchpad.scripts.scriptmonitor import check_script
30
30
 
31
31
 
32
32
def main():