Commit b75f5a57 authored by jay's avatar jay
Browse files

Syntax error fix

parent 2215d982
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -612,7 +612,7 @@ class NetworkNode(Node):
        url = config['pfeffernusse']['url']
        response = requests.post(url, json={'label':label})
        response = response.json()
        model_name = response,get('name_model', None)
        model_name = response.get('name_model', None)
        if model_name is None:
            return
        isdpath = os.path.splitext(self['image_path'])[0] + '.json'