From 70bd78708eab252fbfa136715872e03a6b599e34 Mon Sep 17 00:00:00 2001 From: DiG Date: Tue, 18 Jan 2022 00:05:11 +0100 Subject: [PATCH] typo --- test-remote.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test-remote.py b/test-remote.py index 20f927f..79551ab 100644 --- a/test-remote.py +++ b/test-remote.py @@ -1,6 +1,6 @@ import remote remote.autolog() -print( remote.search('res.users', ['id','=',7]) ) +print( remote.search('res.users', [('id','=',7)]) ) print( remote.fields('product.uom', []) ) -# print( remote.lookup('product.uom', ['id','=',24]), recurse='product.uom,product.uom.categ' ) \ No newline at end of file +# print( remote.lookup('product.uom', [('id','=',24)]), recurse='product.uom,product.uom.categ' ) \ No newline at end of file