summaryrefslogtreecommitdiff
path: root/examples/fetch.py
diff options
context:
space:
mode:
authorErwin de Keijzer <git@0x8.be>2014-03-24 18:36:33 +0100
committerErwin de Keijzer <git@0x8.be>2014-03-24 18:36:33 +0100
commit0258e90ef069161de5f6b2d02fa26f031d9674fc (patch)
tree46d7ad45fca4e72e31b560da1ab586af4412b569 /examples/fetch.py
parent7b82be936dae074217b7c5b9cefe0ec2b227160c (diff)
downloadpsycopg2-0258e90ef069161de5f6b2d02fa26f031d9674fc.tar.gz
Fixed DNS typo in examples
Diffstat (limited to 'examples/fetch.py')
-rw-r--r--examples/fetch.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/fetch.py b/examples/fetch.py
index b47ed3f..096a47e 100644
--- a/examples/fetch.py
+++ b/examples/fetch.py
@@ -24,7 +24,7 @@ import psycopg2
if len(sys.argv) > 1:
DSN = sys.argv[1]
-print "Opening connection using dns:", DSN
+print "Opening connection using dsn:", DSN
conn = psycopg2.connect(DSN)
print "Encoding for this connection is", conn.encoding