Skip to content

Commit

Permalink
Removed lingering comma in query (#1314)
Browse files Browse the repository at this point in the history
  • Loading branch information
edwoodward authored and mwvolo committed Jul 7, 2022
1 parent d3865bb commit 2620e01
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions salesforce/management/commands/update_schools.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ def handle(self, *args, **options):
"Address_Longitude__c," \
"Testimonial__c," \
"Testimonial_Name__c, " \
"Testimonial_Position__c, " \
"Number_of_Adoptions__c FROM Account WHERE Number_of_Adoptions__c > 0"
"Testimonial_Position__c " \
"FROM Account WHERE All_Time_Savings2__c > 0"
response = sf.query_all(query)
sf_schools = response['records']

Expand Down

0 comments on commit 2620e01

Please sign in to comment.