Skip to content

Commit

Permalink
commit
Browse files Browse the repository at this point in the history
  • Loading branch information
keytonic committed Nov 30, 2024
1 parent 569cbe9 commit 152223f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions video_organize.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ def move_it(name):
if (name.find(".py") != -1) :
return

#movies only
if(name.rfind('.mp4') == -1 and name.rfind('.mkv') == -1):
#movies and artwork only
if(name.rfind('.mp4') == -1 and name.rfind('.mkv') == -1 and name.rfind('.jpg') == -1):
return

#get first character, # is its not in alphabet
Expand Down

0 comments on commit 152223f

Please sign in to comment.