Skip to content

Commit

Permalink
requirments check updated
Browse files Browse the repository at this point in the history
  • Loading branch information
m1lhaus committed Dec 31, 2015
1 parent d3b8610 commit 067e6ae
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions woofer.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,11 @@
except ImportError, e:
raise Exception(u"%s! Send2Trash package is required!" % e.message)

try:
import scandir
except ImportError, e:
raise Exception(u"%s! scandir package is required!" % e.message)

try:
import ujson
except ImportError, e:
Expand Down

0 comments on commit 067e6ae

Please sign in to comment.