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()