Skip to content

Commit

Permalink
Fix minor regression related to print_version()
Browse files Browse the repository at this point in the history
Looks like this was introduced inadvertently in cython@2a625fb.

Fixes `cython --version`, which is used by the `FindCython.cmake` module.
  • Loading branch information
aws-taylor authored Aug 14, 2023
1 parent d3223ed commit a7be19e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Cython/Compiler/Main.py
Original file line number Diff line number Diff line change
Expand Up @@ -773,7 +773,7 @@ def main(command_line = 0):
sources = args

if options.show_version:
print_version()
Utils.print_version()

if options.working_path!="":
os.chdir(options.working_path)
Expand Down

0 comments on commit a7be19e

Please sign in to comment.