Refs #27954 -- Fixed typo in django/db/backends/postgresql/client.py comment.
This commit is contained in:
parent
fc22a0a214
commit
ad5f33ee03
|
@ -60,7 +60,7 @@ class DatabaseClient(BaseDatabaseClient):
|
||||||
signal.signal(signal.SIGINT, signal.SIG_IGN)
|
signal.signal(signal.SIGINT, signal.SIG_IGN)
|
||||||
subprocess.check_call(args)
|
subprocess.check_call(args)
|
||||||
finally:
|
finally:
|
||||||
# Restore the orignal SIGINT handler.
|
# Restore the original SIGINT handler.
|
||||||
signal.signal(signal.SIGINT, sigint_handler)
|
signal.signal(signal.SIGINT, sigint_handler)
|
||||||
if temp_pgpass:
|
if temp_pgpass:
|
||||||
temp_pgpass.close()
|
temp_pgpass.close()
|
||||||
|
|
Loading…
Reference in New Issue