Remove '.'s from extensions in lister.py interface and lint-all.

In lint-all, change occurences of '.py', '.js', ... to 'py', 'js', ....
This commit is contained in:
Eklavya Sharma
2016-03-23 08:27:20 +05:30
committed by Tim Abbott
parent ad4c20a3e6
commit 81fdeae0ea
2 changed files with 10 additions and 10 deletions

View File

@@ -80,7 +80,7 @@ def list_files(targets=[], ftypes=[], use_shebang=True, modified_only=False,
continue
if group_by_ftype:
result['.' + filetype].append(fpath)
result[filetype].append(fpath)
else:
result.append(fpath)