Mercurial > hg
comparison hgext/mq.py @ 2795:e5e23cae6e09
mq: remove unecessary test
author | Benoit Boissinot <benoit.boissinot@ens-lyon.org> |
---|---|
date | Sun, 06 Aug 2006 17:20:51 +0200 |
parents | 86c54b7cd331 |
children | 4c39568007f9 |
comparison
equal
deleted
inserted
replaced
2794:86c54b7cd331 | 2795:e5e23cae6e09 |
---|---|
952 if (fl not in self.series and | 952 if (fl not in self.series and |
953 fl not in (self.status_path, self.series_path) | 953 fl not in (self.status_path, self.series_path) |
954 and not fl.startswith('.')): | 954 and not fl.startswith('.')): |
955 msng_list.append(fl) | 955 msng_list.append(fl) |
956 msng_list.sort() | 956 msng_list.sort() |
957 if msng_list: | 957 for x in msng_list: |
958 for x in msng_list: | 958 if self.ui.verbose: |
959 if self.ui.verbose: | 959 self.ui.write("D ") |
960 self.ui.write("D ") | 960 self.ui.write("%s\n" % x) |
961 self.ui.write("%s\n" % x) | |
962 | 961 |
963 def issaveline(self, l): | 962 def issaveline(self, l): |
964 name = l.split(':')[1] | 963 name = l.split(':')[1] |
965 if name == '.hg.patches.save.line': | 964 if name == '.hg.patches.save.line': |
966 return True | 965 return True |