Changeset 1936a9f18591bdd2479097e97298c81a3e750658

Show
Ignore:
Timestamp:
02/19/08 01:10:33 (11 months ago)
Author:
KRKeegan <kevin@krkeegan.com>
git-committer:
KRKeegan <kevin@krkeegan.com> 1203405033 -0800
git-parent:

[c459d4d6f64cff7408e3874d404543184c9612f7]

git-author:
KRKeegan <kevin@krkeegan.com> 1203405033 -0800
Message:

Ignore folders and files starting with .

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • plugin.py

    rf4a13d8 r1936a9f  
    128128            files = [] 
    129129            for file in os.listdir(path): 
     130                if file.startswith('.'): 
     131                    continue 
    130132                file = os.path.join(path, file) 
    131133                if recurse and os.path.isdir(file):