You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Django users
Is it safe/advisable to globally replace
six.text_types(
with
str(
Thanks
Mike
PARTH PATIL
unread,
Feb 11, 2019, 2:00:40 AM2/11/19
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Django users
Six.text_types is used to represent unicode() in python2 and str in python3. And now you are only using python3, it would be safe to replace it with str()
Mike Dewhirst
unread,
Feb 11, 2019, 3:04:06 AM2/11/19
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to django...@googlegroups.com
On 11/02/2019 6:00 pm, PARTH PATIL wrote:
> Six.text_types is used to represent unicode() in python2 and str in python3.
> And now you are only using python3, it would be safe to replace it with str()
>