"src/git@developer.sourcefind.cn:OpenDAS/nni.git" did not exist on "feb6f3b84ddcf2444afa29d5ad098fff8c08d7b1"
Commit e259d109 authored by Shinai Yang's avatar Shinai Yang
Browse files

fix id error

parent d7a62f66
...@@ -85,7 +85,7 @@ class Experiments: ...@@ -85,7 +85,7 @@ class Experiments:
def update_experiment(self, expId, key, value): def update_experiment(self, expId, key, value):
'''Update experiment''' '''Update experiment'''
if id not in self.experiments: if expId not in self.experiments:
return False return False
self.experiments[expId][key] = value self.experiments[expId][key] = value
self.write_file() self.write_file()
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment