##// END OF EJS Templates
state: raise CorruptedState error isntead of ProgrammingError...
Pulkit Goyal -
r38148:dce71840 default
parent child Browse files
Show More
@@ -72,8 +72,8 b' class cmdstate(object):'
72 try:
72 try:
73 int(fp.readline())
73 int(fp.readline())
74 except ValueError:
74 except ValueError:
75 raise error.ProgrammingError("unknown version of state file"
75 raise error.CorruptedState("unknown version of state file"
76 " found")
76 " found")
77 return cbor.load(fp)
77 return cbor.load(fp)
78
78
79 def delete(self):
79 def delete(self):
General Comments 0
You need to be logged in to leave comments. Login now