Skip to content

Commit 7b103c0

Browse files
committed
don't emit --anneal warning when using localized modes
1 parent 8a46dbe commit 7b103c0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/pyrocore/scripts/rtcontrol.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -600,7 +600,8 @@ def mainloop(self):
600600
matches.sort(key=sort_key, reverse=self.options.reverse_sort)
601601

602602
if self.options.anneal:
603-
if not self.options.quiet:
603+
if not self.options.quiet and set(self.options.anneal).difference(
604+
set(['invert', 'unique'])):
604605
if self.options.from_view not in (None, 'default'):
605606
self.LOG.warn("Mixing --anneal with a view other than 'default' might yield unexpected results!")
606607
if int(config.fast_query):

0 commit comments

Comments
 (0)