Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
mizaki committed Jan 28, 2024
1 parent ed00e53 commit 8f55463
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gcd_talker/gcd.py
Original file line number Diff line number Diff line change
Expand Up @@ -470,7 +470,7 @@ def fetch_issues_by_series_issue_num_and_year(
"FROM gcd_issue "
"LEFT JOIN gcd_story ON gcd_story.issue_id=gcd_issue.id AND gcd_story.type_id=19 "
"WHERE gcd_issue.series_id=? "
"AND gcd_issue.number=? AND (gcd_issue.key_date = ? OR gcd_issue.key_date = '') "
"AND gcd_issue.number=? AND (gcd_issue.key_date LIKE ? OR gcd_issue.key_date='') "
"GROUP BY gcd_issue.number;",
[vid, issue_number, year_search],
)
Expand Down

0 comments on commit 8f55463

Please sign in to comment.