Changeset - f61a7b03765e
[Not reviewed]
default
0 1 0
drewp@bigasterisk.com - 15 years ago 2010-06-20 21:10:15
drewp@bigasterisk.com
vidref: ignore take dirs whose names aren't just times, allowing for .hide, etc
Ignore-this: 51badc93bc8c5cc4509bdd98c361e92c
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
light9/vidref/replay.py
Show inline comments
 
@@ -56,7 +56,7 @@ class ReplayViews(object):
 

	
 
        d = songDir(song)
 
        try:
 
            takes = sorted(os.listdir(d))
 
            takes = sorted(t for t in os.listdir(d) if t.isdigit())
 
        except OSError:
 
            return
 
        
0 comments (0 inline, 0 general)