mirror of
https://github.com/ejwa/gitinspector.git
synced 2024-12-22 13:42:14 +01:00
Fix typo in error message.
The error message when using an incompatible version of Python contains a typo. Signed-off-by: Chris Ring <chris@ringthis.com> Reviewed-by: Adam Waldenberg <adam.waldenberg@ejwa.se>
This commit is contained in:
parent
66b63a6f0e
commit
92ef11fa20
1 changed files with 1 additions and 1 deletions
|
@ -101,7 +101,7 @@ class Runner:
|
|||
def __check_python_version__():
|
||||
if sys.version_info < (2, 6):
|
||||
python_version = str(sys.version_info[0]) + "." + str(sys.version_info[1])
|
||||
sys.exit(_("gitinspector requires at leat Python 2.6 to run (version {0} was found).").format(python_version))
|
||||
sys.exit(_("gitinspector requires at least Python 2.6 to run (version {0} was found).").format(python_version))
|
||||
|
||||
def main():
|
||||
argv = terminal.convert_command_line_to_utf8()
|
||||
|
|
Loading…
Reference in a new issue