diff options
author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2017-11-26 16:27:37 +0100 |
---|---|---|
committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2017-11-26 16:27:37 +0100 |
commit | ad5f33ee03edd26c7947e9beab949a6a8bfdb16f (patch) | |
tree | 040f3a1027b11d4ebd6a8dda418edbeaa81d85e0 /django/db/backends/postgresql/client.py | |
parent | fc22a0a2142c3416d7113dec95c4026bd846a851 (diff) | |
download | django-ad5f33ee03edd26c7947e9beab949a6a8bfdb16f.tar.gz |
Refs #27954 -- Fixed typo in django/db/backends/postgresql/client.py comment.
Diffstat (limited to 'django/db/backends/postgresql/client.py')
-rw-r--r-- | django/db/backends/postgresql/client.py | 2 |
1 files changed, 1 insertions, 1 deletions
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() |