Skip to content

Commit

Permalink
Converts two buck_client scripts to Python 3.
Browse files Browse the repository at this point in the history
Summary:
This code is showing up in sandcastle logs as still running Python 2.
Switching the shebangs to Python 3, hopefully CI will highlight if there is
anything not compatible (nothing jumps out at me).

Reviewed By: lebentle

fbshipit-source-id: e063b0f807cd320965bb40d36d21bcb0dd64680d
  • Loading branch information
lisroach authored and facebook-github-bot committed Sep 8, 2022
1 parent 13cfa66 commit 4561c28
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python2.7
#!/usr/bin/env python3
# Copyright (c) Meta Platforms, Inc. and affiliates.
#
# Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python2
#!/usr/bin/env python3
# Copyright (c) Meta Platforms, Inc. and affiliates. All Rights Reserved.

from __future__ import absolute_import, division, print_function, unicode_literals
Expand Down

0 comments on commit 4561c28

Please sign in to comment.