We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4cf611b commit f423e51Copy full SHA for f423e51
nxsblisswriter/NXSWriterService.py
@@ -81,7 +81,7 @@ def start(self):
81
except NoScanAvailable:
82
continue
83
scan = self.__datastore.load_scan(key)
84
- if self.__session == "__all__" or scan.session == self.__session:
+ if self.__session in ["__all__", scan.session]:
85
self.write_scan(scan)
86
87
def get_status(self):
0 commit comments