mirror of
https://github.com/django/django.git
synced 2025-08-09 13:28:18 +00:00
Refs #27954 -- Fixed typo in django/db/backends/postgresql/client.py comment.
This commit is contained in:
parent
fc22a0a214
commit
ad5f33ee03
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue