diff options
-rw-r--r-- | bitbake/lib/bb/fetch2/bzr.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/fetch2/bzr.py b/bitbake/lib/bb/fetch2/bzr.py index 97daa620f4..58e80c81f6 100644 --- a/bitbake/lib/bb/fetch2/bzr.py +++ b/bitbake/lib/bb/fetch2/bzr.py | |||
@@ -73,7 +73,7 @@ class Bzr(FetchMethod): | |||
73 | options.append("-r %s" % ud.revision) | 73 | options.append("-r %s" % ud.revision) |
74 | 74 | ||
75 | if command == "fetch": | 75 | if command == "fetch": |
76 | bzrcmd = "%s co %s %s://%s" % (basecmd, " ".join(options), proto, bzrroot) | 76 | bzrcmd = "%s branch %s %s://%s" % (basecmd, " ".join(options), proto, bzrroot) |
77 | elif command == "update": | 77 | elif command == "update": |
78 | bzrcmd = "%s pull %s --overwrite" % (basecmd, " ".join(options)) | 78 | bzrcmd = "%s pull %s --overwrite" % (basecmd, " ".join(options)) |
79 | else: | 79 | else: |