improve normalize_authors text
This commit is contained in:
parent
ad00854a18
commit
121f8329fb
1 changed files with 5 additions and 3 deletions
|
@ -176,8 +176,10 @@ def normalize_authors(authors, photodb, warning_bag=None):
|
||||||
'''
|
'''
|
||||||
Either:
|
Either:
|
||||||
- A string, where the usernames are separated by commas
|
- A string, where the usernames are separated by commas
|
||||||
- An iterable containing usernames
|
- An iterable containing
|
||||||
- An iterable containing User objects.
|
- Usernames
|
||||||
|
- User IDs
|
||||||
|
- User objects
|
||||||
|
|
||||||
Returns: A set of user IDs.
|
Returns: A set of user IDs.
|
||||||
'''
|
'''
|
||||||
|
@ -196,7 +198,7 @@ def normalize_authors(authors, photodb, warning_bag=None):
|
||||||
requested_author = requested_author.username
|
requested_author = requested_author.username
|
||||||
|
|
||||||
try:
|
try:
|
||||||
user = get_user(photodb, requested_author)
|
user = get_user(photodb, username_or_id=requested_author)
|
||||||
except exceptions.NoSuchUser as e:
|
except exceptions.NoSuchUser as e:
|
||||||
if warning_bag:
|
if warning_bag:
|
||||||
warning_bag.add(e.error_message)
|
warning_bag.add(e.error_message)
|
||||||
|
|
Loading…
Reference in a new issue