# HG changeset patch # User Jeff Hammel # Date 1296582154 28800 # Node ID d7d2f9042681e13f85e7dd7f2d416b65f34cb8f9 # Parent 98944f934452f52b07ed4a82352f8bee7229cc82 print out repository location for debugging diff -r 98944f934452 -r d7d2f9042681 autobot/changes/poller.py --- a/autobot/changes/poller.py Mon Jan 31 21:26:46 2011 -0800 +++ b/autobot/changes/poller.py Tue Feb 01 09:42:34 2011 -0800 @@ -151,7 +151,7 @@ d = defer.succeed(None) # ensure the repository is initialized if not self.isInitialized(): - self.log('Initialing new repository') + self.log('Initialing new repository at %s' % self.workdir) d.addCallback(self.initRepository) # get the hash before updating diff -r 98944f934452 -r d7d2f9042681 autobot/process/factory.py --- a/autobot/process/factory.py Mon Jan 31 21:26:46 2011 -0800 +++ b/autobot/process/factory.py Tue Feb 01 09:42:34 2011 -0800 @@ -66,7 +66,6 @@ for git_source, branch in self.sources.get('git', ()): self.addStep(ShellCommand(command=['git', 'clone', git_source], **kwargs)) - class VirtualenvFactory(SourceFactory): """