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 19117fc commit a193758Copy full SHA for a193758
ck/kernel.py
@@ -1426,7 +1426,9 @@ def list_all_files(i):
1426
a.append(os.path.join(pe, fn))
1427
1428
number=len(a)
1429
- if limit!=-1 and number>limit: break
+
1430
+ if limit!=-1 and number>limit:
1431
+ break
1432
1433
return {'return':0, 'list':a, 'number':str(number)}
1434
@@ -5439,7 +5441,10 @@ def search(i):
5439
5441
tags=i.get('tags','')
5440
5442
if tags!='':
5443
xtags=tags.split(',')
- sd['tags']=xtags
5444
+ xtags1=[]
5445
+ for q in xtags:
5446
+ xtags1.append(q.strip())
5447
+ sd['tags']=xtags1
5448
5449
# Check if index
5450
if cfg.get('use_indexing','')!='yes' or i.get('internal','')=='yes':
0 commit comments