Skip to content

Commit

Permalink
Fix style: add space around =
Browse files Browse the repository at this point in the history
  • Loading branch information
stdweird committed May 11, 2015
1 parent 72439eb commit b8602d6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/vsc/install/shared_setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -273,8 +273,8 @@ def action_target(target, setupfn=setup, extra_sdist=[]):
# very primitive check for install --skip-build
# in that case, we don't mind "leftover build";
# it's probably intentional
install_ind=sys.argv.index('install')
build_skip=sys.argv.index('--skip-build')
install_ind = sys.argv.index('install')
build_skip = sys.argv.index('--skip-build')
if build_skip > install_ind:
do_cleanup = False
except ValueError:
Expand Down

0 comments on commit b8602d6

Please sign in to comment.