~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to utilities/pgbackup.py

  • Committer: William Grant
  • Date: 2012-01-01 03:10:25 UTC
  • mto: This revision was merged to the branch mainline in revision 14614.
  • Revision ID: william.grant@canonical.com-20120101031025-pcl0na3sbgfrztcw
utilities

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
__metaclass__ = type
13
13
__all__ = []
14
14
 
15
 
import sys
 
15
from datetime import datetime
 
16
import logging
 
17
from optparse import OptionParser
16
18
import os
17
19
import os.path
18
20
import stat
19
21
import subprocess
20
 
import logging
21
 
from datetime import datetime
22
 
from optparse import OptionParser
 
22
import sys
 
23
 
23
24
 
24
25
MB = float(1024*1024)
25
26