+invirt-dev (0.1.3) unstable; urgency=low
+
+ * Remove stray 'not' in builder.py
+
+ -- Greg Brockman <gdb@mit.edu> Wed, 04 Aug 2010 23:55:25 -0400
+
invirt-dev (0.1.2) unstable; urgency=low
* Corrected required version of git-core dependency
# Almost by definition, A is a fast-forward of B if B..A is
# empty
- if not c.captureOutput(['git', 'rev-list', '%s..%s' % (commit, branch)],
- cwd=package_repo):
+ if c.captureOutput(['git', 'rev-list', '%s..%s' % (commit, branch)],
+ cwd=package_repo):
raise InvalidBuild('New commit %s of %s is not a fast-forward of'
'commit currently in pocket %s' %
(commit, package, pocket))