Skip to content

Commit

Permalink
add setuptools to check list of dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
ductin committed Oct 25, 2017
1 parent b7350a8 commit e173a46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vpnproxy_tui.py
Original file line number Diff line number Diff line change
Expand Up @@ -1041,7 +1041,7 @@ def exit(self, loop, data=None):

# check_dependencies:
required = {'openvpn': 0, 'python-pip': 0, 'requests': 0, 'urwid': 0, 'setuptools':0, 'wmctrl': 0}
for module in ['requests', 'urwid', 'pip']:
for module in ['requests', 'urwid', 'setuptools', 'pip']:
try:
__import__(module, globals(), locals(), [], -1)
except ImportError:
Expand Down

0 comments on commit e173a46

Please sign in to comment.