# HG changeset patch # User Jeff Hammel # Date 1307930498 25200 # Node ID 052ee8a2ebdeafa5d2c35b3493c8a270b31f0b68 # Parent 7a11a25da2e8c4ae398cbf0caf0d786336c5daee typo diff -r 7a11a25da2e8 -r 052ee8a2ebde buttercup/source.py --- a/buttercup/source.py Sun Jun 12 19:01:15 2011 -0700 +++ b/buttercup/source.py Sun Jun 12 19:01:38 2011 -0700 @@ -36,7 +36,7 @@ def update(self): """updates a checkout or does one if it does not exist""" if os.path.exists(self.directory()): - hgdir = os.path.join(self.directory(), '.hg')) + hgdir = os.path.join(self.directory(), '.hg') assert os.path.exists(hgdir), "Not an hg directory: %s" % hgdir call(['hg', 'pull'], cwd=self.directory()) call(['hg', 'update'], cwd=self.directory())