Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move from __future__ import to the top of the file #1789

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions gyp/tools/pretty_sln.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@
Then it outputs a possible build order.
"""

__author__ = 'nsylvain (Nicolas Sylvain)'

from __future__ import print_function

import os
import re
import sys
import pretty_vcproj

__author__ = 'nsylvain (Nicolas Sylvain)'

def BuildProject(project, built, projects, deps):
# if all dependencies are done, we can build it, otherwise we try to build the
# dependency.
Expand Down
3 changes: 2 additions & 1 deletion gyp/tools/pretty_vcproj.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@

It outputs the resulting xml to stdout.
"""
__author__ = 'nsylvain (Nicolas Sylvain)'

from __future__ import print_function

Expand All @@ -21,6 +20,8 @@
from xml.dom.minidom import parse
from xml.dom.minidom import Node

__author__ = 'nsylvain (Nicolas Sylvain)'

REPLACEMENTS = dict()
ARGUMENTS = None

Expand Down