Fix bug when exporting debug information with multiple remote servers

Fix #1100
This commit is contained in:
Julien Duponchelle 2017-07-27 11:59:20 +02:00
parent 7683a79bb1
commit 108a659ca4
No known key found for this signature in database
GPG Key ID: CE8B29639E07F5E8

View File

@ -169,7 +169,7 @@ class ServerHandler:
data = r.body.decode("utf-8")
except Exception as e:
data = str(e)
with open(os.path.join(debug_dir, "compute_{}.txt".format(compute.name)), "w+") as f:
with open(os.path.join(debug_dir, "compute_{}.txt".format(compute.id)), "w+") as f:
f.write("Compute ID: {}\n".format(compute.id))
f.write(data)