Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
wateridgecircle committed Jul 21, 2021
2 parents a140cc1 + 3b66ef4 commit 1b66abe
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 8 deletions.
7 changes: 0 additions & 7 deletions .profile
Original file line number Diff line number Diff line change
Expand Up @@ -187,10 +187,3 @@ mann() {
}

export PATH="$HOME/.cargo/bin:$PATH"

export PATH="$HOME/.poetry/bin:$PATH"

# Add RVM to PATH for scripting. Make sure this is the last PATH variable change.
export PATH="$PATH:$HOME/.rvm/bin"

[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" # Load RVM into a shell session *as a function*
2 changes: 1 addition & 1 deletion scripts/hosts.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def get_remote_hosts():
file_handle = urllib.request.urlopen(hosts_url, context=ctx)
remote_content = []
for line_bytes in file_handle:
line = str(line_bytes, 'utf8').rstrip()
line = str(line_bytes, 'utf8').rstrip()
if not comment_pattern.match(line) and safe_pattern.match(line):
remote_content.append(line)
file_handle.close()
Expand Down

0 comments on commit 1b66abe

Please sign in to comment.