summaryrefslogtreecommitdiff
path: root/examples/tz.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/tz.py')
-rw-r--r--examples/tz.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/tz.py b/examples/tz.py
index 9a484f1..c3dd8e4 100644
--- a/examples/tz.py
+++ b/examples/tz.py
@@ -60,10 +60,10 @@ print "Time zone:", d.tzinfo.tzname(d), "offset:", d.tzinfo.utcoffset(d)
curs.execute("SELECT * FROM test_tz")
for d in curs:
u = d[0].utcoffset() or ZERO
- print "UTC time: ", d[0] - u
+ print "UTC time: ", d[0] - u
print "Local time:", d[0]
print "Time zone:", d[0].tzinfo.tzname(d[0]), d[0].tzinfo.utcoffset(d[0])
-
+
curs.execute("DROP TABLE test_tz")
conn.commit()