Skip to content

Commit

Permalink
Fixed a typo in a comment (#6254)
Browse files Browse the repository at this point in the history
  • Loading branch information
alex authored and ewdurbin committed Jul 25, 2019
1 parent fcb0811 commit c04e168
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion warehouse/macaroons/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,6 @@ class Macaroon(db.Model):
# default would be to generate a random key). However, it appears the
# PostgreSQL pgcrypto extension uses OpenSSL RAND_bytes if available
# instead of urandom. This is less than optimal, and we would generally
# prefer to just always use usrandom. Thus we'll do this ourselves here
# prefer to just always use urandom. Thus we'll do this ourselves here
# in our application.
key = Column(LargeBinary, nullable=False, default=_generate_key)

0 comments on commit c04e168

Please sign in to comment.