Skip to content

Commit

Permalink
Add missing override in BinaryVC.
Browse files Browse the repository at this point in the history
  • Loading branch information
rschatz committed Feb 11, 2016
1 parent bd4b2f7 commit f7e16ed
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions mx.py
Original file line number Diff line number Diff line change
Expand Up @@ -3822,6 +3822,10 @@ def _id(self, metadata):
assert metadata.snapshotVersion.endswith('-SNAPSHOT')
return metadata.snapshotVersion[:-len('-SNAPSHOT')]

def isDirty(self, abortOnError=True):
# a binary repo can not be dirty
return False

def _hashFromUrl(url):
logvv('Retrieving SHA1 from {}'.format(url))
hashFile = urllib2.urlopen(url)
Expand Down

0 comments on commit f7e16ed

Please sign in to comment.