fetch/__init__.py: Add in hooks to make sure osc fetcher is seen

git-svn-id: https://svn.o-hand.com/repos/poky/trunk@5402 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
Richard Purdie 2008-10-02 22:15:38 +00:00
parent 369a30a9d3
commit 1dc91f00fd
2 changed files with 4 additions and 0 deletions

View File

@ -550,6 +550,7 @@ import ssh
import perforce
import bzr
import hg
import osc
methods.append(local.Local())
methods.append(wget.Wget())
@ -561,3 +562,4 @@ methods.append(ssh.SSH())
methods.append(perforce.Perforce())
methods.append(bzr.Bzr())
methods.append(hg.Hg())
methods.append(osc.Osc())

View File

@ -550,6 +550,7 @@ import ssh
import perforce
import bzr
import hg
import osc
methods.append(local.Local())
methods.append(wget.Wget())
@ -561,3 +562,4 @@ methods.append(ssh.SSH())
methods.append(perforce.Perforce())
methods.append(bzr.Bzr())
methods.append(hg.Hg())
methods.append(osc.Osc())