summaryrefslogtreecommitdiff
path: root/django/db/backends/postgresql/client.py
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2017-11-26 16:27:37 +0100
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2017-11-26 16:27:37 +0100
commitad5f33ee03edd26c7947e9beab949a6a8bfdb16f (patch)
tree040f3a1027b11d4ebd6a8dda418edbeaa81d85e0 /django/db/backends/postgresql/client.py
parentfc22a0a2142c3416d7113dec95c4026bd846a851 (diff)
downloaddjango-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.py2
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()