Skip to content

Commit

Permalink
Fix version check, closes #385
Browse files Browse the repository at this point in the history
  • Loading branch information
rytilahti committed Oct 31, 2018
1 parent 14878ea commit 49e19ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion miio/click_common.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import sys
if sys.version_info < (3, 5):
print("To use this script you need python 3.5 or newer, got %s" %
sys.version_info)
(sys.version_info,))
sys.exit(1)
import click
import ipaddress
Expand Down

0 comments on commit 49e19ad

Please sign in to comment.