Skip to content

Commit 43d8b1a

Browse files
author
Jonathan Rocher
committed
THIS IS A TEST COMMIT
This is a test commit to try out a more formatted message so that github is happier with me. * point 1 * point 2
1 parent 0f25a51 commit 43d8b1a

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

sqlalchemy_simple_example.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77

88
db = create_engine('sqlite:///tutorial.db')
99

10-
db.echo = False # Try changing this to True and see what happens
10+
# Try changing this to True and see what happens
11+
db.echo = False
1112

1213
# The metadata is a collection of tables that needs to be bound to the
1314
# engine
@@ -38,4 +39,4 @@
3839
print 'Password:', row[users.c.password]
3940

4041
for row in rs:
41-
print row.name, 'is', row.age, 'years old'
42+
print row.name, 'is', row.age, 'years old'

0 commit comments

Comments
 (0)