Skip to content

Commit

Permalink
Reverse author fetch strategy
Browse files Browse the repository at this point in the history
  • Loading branch information
WittmannF committed Sep 25, 2024
1 parent 04afb91 commit 5408005
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sortgs/sortgs.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ def setup_driver():
def get_author(content):
for char in range(0,len(content)):
if content[char] == '-':
out = content[:char-1]
out = content[2:char-1]
break
return out

Expand Down

0 comments on commit 5408005

Please sign in to comment.