~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/devscripts/ec2test/session.py

  • Committer: Curtis Hovey
  • Date: 2011-12-24 17:49:30 UTC
  • mto: This revision was merged to the branch mainline in revision 14602.
  • Revision ID: curtis.hovey@canonical.com-20111224174930-xk1d5cvhyxq46ctf
Moved webapp to lp.services.

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
    'EC2SessionName',
9
9
    ]
10
10
 
11
 
from datetime import (
12
 
    datetime,
13
 
    timedelta,
14
 
    )
 
11
from datetime import datetime, timedelta
15
12
 
16
13
from devscripts.ec2test.utils import (
17
 
    find_datetime_string,
18
 
    make_datetime_string,
19
 
    make_random_string,
20
 
    )
 
14
    find_datetime_string, make_datetime_string, make_random_string)
21
15
 
22
16
 
23
17
DEFAULT_LIFETIME = timedelta(hours=6)