From ad5f33ee03edd26c7947e9beab949a6a8bfdb16f Mon Sep 17 00:00:00 2001 From: Mariusz Felisiak Date: Sun, 26 Nov 2017 16:27:37 +0100 Subject: [PATCH] Refs #27954 -- Fixed typo in django/db/backends/postgresql/client.py comment. --- django/db/backends/postgresql/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/db/backends/postgresql/client.py b/django/db/backends/postgresql/client.py index 6d4cc9b692..7fca6eff30 100644 --- a/django/db/backends/postgresql/client.py +++ b/django/db/backends/postgresql/client.py @@ -60,7 +60,7 @@ class DatabaseClient(BaseDatabaseClient): signal.signal(signal.SIGINT, signal.SIG_IGN) subprocess.check_call(args) finally: - # Restore the orignal SIGINT handler. + # Restore the original SIGINT handler. signal.signal(signal.SIGINT, sigint_handler) if temp_pgpass: temp_pgpass.close()