Skip to content

Commit

Permalink
Used a better name
Browse files Browse the repository at this point in the history
  • Loading branch information
Aboisier committed Mar 4, 2019
1 parent b6aa4cd commit 54e365c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ScoutSuite/providers/utils.py
Expand Up @@ -9,6 +9,6 @@ def get_non_provider_id(name):
:param name: Name of the resource to
:return: SHA1(name)
"""
hash = sha1()
hash.update(name.encode('utf-8'))
return hash.hexdigest()
name_hash = sha1()
name_hash.update(name.encode('utf-8'))
return name_hash.hexdigest()

0 comments on commit 54e365c

Please sign in to comment.