Skip to content

Commit

Permalink
Refs #27954 -- Fixed typo in django/db/backends/postgresql/client.py …
Browse files Browse the repository at this point in the history
…comment.
  • Loading branch information
felixxm committed Nov 26, 2017
1 parent fc22a0a commit ad5f33e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django/db/backends/postgresql/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def runshell_db(cls, conn_params):
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()
Expand Down

0 comments on commit ad5f33e

Please sign in to comment.