Skip to content

Commit

Permalink
Value for code 203
Browse files Browse the repository at this point in the history
  • Loading branch information
kfsone committed Feb 23, 2015
1 parent 831671c commit cf80889
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion misc/edsc.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,7 @@ class StarSubmissionResult(object):
codeMap = {
201: "New Entry",
202: "System CR increased",
203: "Coordinates calculated",
301: "Distance added",
302: "Distance CR increased",
303: "Added verification",
Expand Down Expand Up @@ -206,7 +207,7 @@ def __init__(self, star, response):
sysName = ent['system'].upper()
code = int(ent['status']['statusnum'])
msg = ent['status']['msg']
if code in [201, 202]:
if code in [201, 202, 203]:
self.systems[sysName] = (code, None)
else:
self.errors.append(Status(
Expand Down

0 comments on commit cf80889

Please sign in to comment.