We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a089f21 commit b75f98bCopy full SHA for b75f98b
applications/sam/sam_ls.py
@@ -257,7 +257,10 @@ def run(self, parser):
257
# new browse
258
items += sequenceParser.browse(newBrowsePath, detectionMethod, newFilter)
259
260
- self.printItems(items, args, detectionMethod, filters)
+ if not len(items):
261
+ self.logger.warning('No items found for input "' + input + '".')
262
+ else:
263
+ self.printItems(items, args, detectionMethod, filters)
264
265
266
if __name__ == '__main__':
0 commit comments