Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1621)

Unified Diff: third_party/WebKit/Tools/Scripts/webkitpy/common/find_files.py

Issue 2801393002: Remove remaining references to SVN. (Closed)
Patch Set: Remove unnecessary test Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Tools/Scripts/webkitpy/common/find_files.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/common/find_files.py b/third_party/WebKit/Tools/Scripts/webkitpy/common/find_files.py
index ef7ad72fc5d24de74695c1e366a484509a4af1bc..f1ce80e314d11c1287d17a38b07c80cd8561289e 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/common/find_files.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/common/find_files.py
@@ -62,7 +62,7 @@ def find(filesystem, base_dir, paths=None, skipped_directories=None, file_filter
An iterable of absolute paths that were found.
"""
paths = paths or ['*']
- skipped_directories = skipped_directories or set(['.svn', '_svn'])
+ skipped_directories = skipped_directories or set()
absolute_paths = _normalize(filesystem, base_dir, paths)
return _normalized_find(filesystem, absolute_paths, skipped_directories, file_filter, directory_sort_key)

Powered by Google App Engine
This is Rietveld 408576698