~ubuntu-core-dev/update-manager/main

« back to all changes in this revision

Viewing changes to AutoUpgradeTester/UpgradeTestBackendSimulate.py

  • Committer: Colin Watson
  • Date: 2012-05-01 14:01:29 UTC
  • Revision ID: cjwatson@canonical.com-20120501140129-emzjcpf4f22zr54g
Tell Python to use absolute imports by default, and annotate cases where
we need relative imports.

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
# test backend
4
4
#
5
5
 
6
 
from __future__ import print_function
 
6
from __future__ import absolute_import, print_function
7
7
 
8
8
import tempfile
9
9
 
10
 
from UpgradeTestBackend import UpgradeTestBackend
 
10
from .UpgradeTestBackend import UpgradeTestBackend
11
11
 
12
12
class UpgradeTestBackendSimulate(UpgradeTestBackend):
13
13