<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -30,6 +30,11 @@ class Mercurial(VersionControl):
             cmd += '\\\n&amp;&amp; (cd ./src/%s; hg update -C %s )' % (self.name, self.branch) 
         return cmd
 
+class Bazaar(VersionControl):
+    def branch(self):
+        cmd = '%s branch %s ./src/%s' % (self.cmd, self.url, self.name)
+        return cmd
+
 
 def install_module(src_dir, module_name='', dist_utils=False):
     &quot;&quot;&quot;
@@ -84,6 +89,8 @@ def bootstrap():
                 local(Git(**pkg).clone())
             elif pkg['dist'] == 'hg':
                 local(Mercurial(**pkg).clone())
+            elif pkg['dist'] == 'bzr':
+                local(Bazaar(**pkg).branch())
             else:
                 raise Exception, '%s is not a recognized distribution method' % pkg['dist']
             #if a package name isn't specified, assume dist_utils</diff>
      <filename>fabfile.py</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>4328b33fd6f1cd7f311964570a62ca7cec5fbfbc</id>
    </parent>
  </parents>
  <author>
    <name>Jay Graves</name>
    <email>jay@skabber.com</email>
  </author>
  <url>http://github.com/lincolnloop/lincoln-loop-deploy/commit/4162e9db8b2c80fde3eca6a596041c06229a42e9</url>
  <id>4162e9db8b2c80fde3eca6a596041c06229a42e9</id>
  <committed-date>2008-12-17T22:53:52-08:00</committed-date>
  <authored-date>2008-12-12T10:56:44-08:00</authored-date>
  <message>Added bzr support.

Signed-off-by: Peter Baumgartner &lt;pete@lincolnloop.com&gt;</message>
  <tree>5d16560b138aefc0cc04cd6b05d6e095b29dca73</tree>
  <committer>
    <name>Peter Baumgartner</name>
    <email>pete@lincolnloop.com</email>
  </committer>
</commit>
