diff options
author | Jon Dufresne <jon.dufresne@gmail.com> | 2017-12-01 21:37:49 -0800 |
---|---|---|
committer | Jon Dufresne <jon.dufresne@gmail.com> | 2017-12-01 21:42:14 -0800 |
commit | e335d6d2234a7bb1d83741f851dba5dbbabd6e3c (patch) | |
tree | be5545f9f2c20bc41b500d4aac462fd40c0ea8d8 /examples/tz.py | |
parent | a51160317c680662c52e4a1a6b4d11beae37f205 (diff) | |
download | psycopg2-e335d6d2234a7bb1d83741f851dba5dbbabd6e3c.tar.gz |
Trim trailing whitespace from all files throughout project
Many editors automatically trim whitespace on save. By trimming all
files in one go, makes future diffs cleaner without extraneous
whitespace changes.
Diffstat (limited to 'examples/tz.py')
-rw-r--r-- | examples/tz.py | 4 |
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() |