~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/codehosting/scripts/tests/test_modifiedbranches.py

  • Committer: Michael Hudson
  • Date: 2009-05-13 05:36:08 UTC
  • mto: This revision was merged to the branch mainline in revision 8475.
  • Revision ID: michael.hudson@canonical.com-20090513053608-racxj33qv1097v81
bzr ls --versioned --recursive --kind=file | xargs sed -i -e 's,from canonical.codehosting,from lp.codehosting,'
bzr mv lib/canonical/codehosting lib/lp/codehosting
and one manual edit...

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
 
11
11
import pytz
12
12
 
13
 
from canonical.codehosting.scripts.modifiedbranches import (
 
13
from lp.codehosting.scripts.modifiedbranches import (
14
14
    ModifiedBranchesScript)
15
 
from canonical.codehosting.vfs import branch_id_to_path
 
15
from lp.codehosting.vfs import branch_id_to_path
16
16
from canonical.config import config
17
17
from canonical.launchpad.scripts.base import LaunchpadScriptFailure
18
18
from canonical.launchpad.testing import TestCase, TestCaseWithFactory