1
0

kivy: (trivial) fix typo in error msg

This commit is contained in:
SomberNight
2020-05-29 19:12:02 +02:00
parent 4a4b0922e5
commit 3e4ead446b

View File

@@ -34,8 +34,8 @@ try:
import kivy
except ImportError:
# This error ideally shouldn't be raised with pre-built packages
sys.exit("Error: Could not import kivy. Please install it using the" + \
"instructions mentioned here `http://kivy.org/#download` .")
sys.exit("Error: Could not import kivy. Please install it using the "
"instructions mentioned here `https://kivy.org/#download` .")
# minimum required version for kivy
kivy.require('1.8.0')