From c04e168c8d99c05427e458d3d29f36bbb961066f Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Thu, 25 Jul 2019 11:01:10 -0400 Subject: [PATCH] Fixed a typo in a comment (#6254) --- warehouse/macaroons/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/warehouse/macaroons/models.py b/warehouse/macaroons/models.py index afaae8f966d3..33373b7aa9e0 100644 --- a/warehouse/macaroons/models.py +++ b/warehouse/macaroons/models.py @@ -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)