Skip to content

Commit

Permalink
(#1645) fix for errant cookie generation
Browse files Browse the repository at this point in the history
automatic commit by git-black, original commits:
  57c6b11
  • Loading branch information
drewbanin authored and iknox-fa committed Feb 8, 2022
1 parent c68e029 commit a297217
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/dbt/tracking.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ def set_cookie(self):
user = {"id": str(uuid.uuid4())}

cookie_path = os.path.abspath(self.cookie_dir)
profiles_file = os.path.join(cookie_path, 'profiles.yml')
profiles_file = os.path.join(cookie_path, "profiles.yml")
if os.path.exists(cookie_path) and os.path.exists(profiles_file):
with open(self.cookie_path, "w") as fh:
yaml.dump(user, fh)
Expand Down

0 comments on commit a297217

Please sign in to comment.