We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 248ad82 commit 19a4df6Copy full SHA for 19a4df6
git/util.py
@@ -577,9 +577,8 @@ def _from_string(cls, string):
577
m = cls.name_only_regex.search(string)
578
if m:
579
return Actor(m.group(1), None)
580
- else:
581
- # assume best and use the whole string as name
582
- return Actor(string, None)
+ # assume best and use the whole string as name
+ return Actor(string, None)
583
# END special case name
584
# END handle name/email matching
585
0 commit comments