Skip to content

Commit 735b2eb

Browse files
authored
Merge pull request #2 from cuongnmtm/adjust-get_str
Adjust OdooRecordSetProvider's get_str() to include model name as it was
2 parents 862432c + ccfe623 commit 735b2eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pydevd_plugins/extensions/pydevd_plugin_odoo.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def get_dictionary(self, obj):
3030
return defaultResolver.get_dictionary(obj)
3131

3232
def get_str(self, val):
33-
s = str(val.ids)
33+
s = str(val)
3434
if len(val) == 1:
3535
name = getattr(val, 'name', None)
3636
if name:

0 commit comments

Comments
 (0)