Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
clbarnes committed Jul 6, 2017
1 parent 5f4abd0 commit 2dc6856
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion synapsesuggestor/control/training_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def sample_treenodes(request, project_id):

cursor = connection.cursor()
cursor.execute('''
SELECT id, location_x, location_y, location_z FROM treenode WHERE tn.project_id = %s;
SELECT id, location_x, location_y, location_z FROM treenode WHERE project_id = %s;
''', (project_id))
rows = cursor.fetchall()

Expand Down

0 comments on commit 2dc6856

Please sign in to comment.