Skip to content

Commit

Permalink
fix(ident): fix mismatch identation.
Browse files Browse the repository at this point in the history
  • Loading branch information
Aurélien 'Bubu' Busi committed Jul 10, 2018
1 parent 6a3693f commit f42c7bc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ast/ast.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,10 @@ def print_ast(lang_module, input_file):
lang = sys.argv[1]

try:
if sys.version_info >= (3,0):
lang = "%s_py3" % lang
if sys.version_info >= (3,0):
lang = "%s_py3" % lang
except:
pass
pass

filename = sys.argv[2]

Expand Down

1 comment on commit f42c7bc

@haikaladnan
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Add python3 support for building the lib. #66
graphql:master dailymotion:abu/support_python3_for_build

Please sign in to comment.