Skip to content

Commit

Permalink
Reverted unnecessary style change
Browse files Browse the repository at this point in the history
  • Loading branch information
rtkjliviero committed Aug 21, 2019
1 parent 7d3691c commit a6ccc62
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions pex/variables.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,9 @@ def from_rc(cls, rc=None):
:rtype: dict
"""
ret_vars = {}
rc_locations = [
'/etc/pexrc',
'~/.pexrc'
] + [os.path.join(os.path.dirname(sys.argv[0]), '.pexrc')]

rc_locations = ['/etc/pexrc',
'~/.pexrc',
os.path.join(os.path.dirname(sys.argv[0]), '.pexrc')]
if rc:
rc_locations.append(rc)
for filename in rc_locations:
Expand Down

0 comments on commit a6ccc62

Please sign in to comment.