~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to scripts/code-import-worker.py

  • Committer: Michael Hudson
  • Date: 2009-03-27 00:09:15 UTC
  • mto: (9905.7.1 hg-imports)
  • mto: This revision was merged to the branch mainline in revision 9938.
  • Revision ID: michael.hudson@canonical.com-20090327000915-sseqyl3r008xwpk7
* implementation and tests for bzr-svn puller
* horrors to get around bzr-svn depending on python 2.5
* still doesn't work, probably some annoying bzr/bzr-svn compatibility issue.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
 
21
21
from canonical.codehosting import load_optional_plugin
22
22
from canonical.codehosting.codeimport.worker import (
23
 
    CSCVSImportWorker, CodeImportSourceDetails, GitImportWorker,
24
 
    get_default_bazaar_branch_store, get_default_foreign_tree_store)
 
23
    BzrSvnImportWorker, CSCVSImportWorker, CodeImportSourceDetails,
 
24
    GitImportWorker, get_default_bazaar_branch_store,
 
25
    get_default_foreign_tree_store)
25
26
from canonical.launchpad import scripts
26
27
 
27
28
 
28
 
 
29
29
class CodeImportWorker:
30
30
 
31
31
    def __init__(self):