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:
Chris Ring 2013-07-25 08:52:52 +02:00 committed by Adam Waldenberg
parent 66b63a6f0e
commit 92ef11fa20
1 changed files with 1 additions and 1 deletions

View File

@ -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()