equal
deleted
inserted
replaced
542 return True, True |
542 return True, True |
543 return bool(changes), False |
543 return bool(changes), False |
544 |
544 |
545 def dirty(self, ignoreupdate=False): |
545 def dirty(self, ignoreupdate=False): |
546 if not self._wcchanged()[0]: |
546 if not self._wcchanged()[0]: |
547 if self._wcrev() == self._state[1] and not ignoreupdate: |
547 if self._wcrev() == self._state[1] or ignoreupdate: |
548 return False |
548 return False |
549 return True |
549 return True |
550 |
550 |
551 def commit(self, text, user, date): |
551 def commit(self, text, user, date): |
552 # user and date are out of our hands since svn is centralized |
552 # user and date are out of our hands since svn is centralized |