Private GIT
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
SickRage-1
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
vlbox
SickRage-1
Commits
4b1a8210
Commit
4b1a8210
authored
Nov 21, 2015
by
Vince Valenti
Browse files
Options
Downloads
Patches
Plain Diff
Add config.msi to list of directories to ignore
parent
618b9a51
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
sickbeard/browser.py
+2
-2
2 additions, 2 deletions
sickbeard/browser.py
with
2 additions
and
2 deletions
sickbeard/browser.py
+
2
−
2
View file @
4b1a8210
...
...
@@ -86,8 +86,8 @@ def foldersAtPath(path, includeParent=False, includeFiles=False):
fileList
=
[
x
for
x
in
fileList
if
ek
(
os
.
path
.
isdir
,
x
[
'
path
'
])]
# prune out directories to protect the user from doing stupid things (already lower case the dir to reduce calls)
hideList
=
[
"
boot
"
,
"
bootmgr
"
,
"
cache
"
,
"
msocache
"
,
"
recovery
"
,
"
$recycle.bin
"
,
"
recycler
"
,
"
system volume information
"
,
"
temporary internet files
"
]
# windows specific
hideList
=
[
"
boot
"
,
"
bootmgr
"
,
"
cache
"
,
"
config.msi
"
,
"
msocache
"
,
"
recovery
"
,
"
$recycle.bin
"
,
"
recycler
"
,
"
system volume information
"
,
"
temporary internet files
"
]
# windows specific
hideList
+=
[
"
.fseventd
"
,
"
.spotlight
"
,
"
.trashes
"
,
"
.vol
"
,
"
cachedmessages
"
,
"
caches
"
,
"
trash
"
]
# osx specific
fileList
=
[
x
for
x
in
fileList
if
x
[
'
name
'
].
lower
()
not
in
hideList
]
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment