Refs #27954 -- Fixed typo in django/db/backends/postgresql/client.py comment.

This commit is contained in:
Mariusz Felisiak 2017-11-26 16:27:37 +01:00
parent fc22a0a214
commit ad5f33ee03
No known key found for this signature in database
GPG Key ID: 2EF56372BA48CD1B
1 changed files with 1 additions and 1 deletions

View File

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