diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2012-04-13 21:16:12 +0200 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2012-04-13 21:16:12 +0200 |
commit | eeb9927c89d6d2425a74c33ff8773bceba39af1c (patch) | |
tree | e5e770fc041fa27b6e13a78dc9c3dc3f75c7c213 /returncodes.py | |
parent | 99561b834dbd9d52b83aa7b0fb980431fa1aa056 (diff) | |
download | pyevenja-eeb9927c89d6d2425a74c33ff8773bceba39af1c.zip pyevenja-eeb9927c89d6d2425a74c33ff8773bceba39af1c.tar.gz |
Diffstat (limited to 'returncodes.py')
-rw-r--r-- | returncodes.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/returncodes.py b/returncodes.py index 2d8b50a..b89b6fa 100644 --- a/returncodes.py +++ b/returncodes.py @@ -30,11 +30,11 @@ RET_KO = -1 RET_MEMORYSPACE = -10 #// developpement errors -RET_NOTIMPLEMENTED = -1001 #/* Method not already implmented*/ -RET_NOTIMPLEMENTED_TXT = "NOT IMPLEMENTED" #/* Text version */ +RET_NOTIMPLEMENTED = -1001 #/* Method not already implmented*/ +RET_NOTIMPLEMENTED_TXT = "NOT IMPLEMENTED" #/* Text version */ #// Erros which can be generated at start of the application (before the rooms are working) -RET_NOPARAMS = -2001 #// The parameter is not available +RET_NOPARAMS = -2001 #// The parameter is not available #// Returns in normal usage of the evenja and evendoor technology need to be managed by the class RET_INTERNAL = -10000 @@ -54,5 +54,5 @@ RET_NOTEXIST = RET_TREE - 5 #/* {Next,Prev,Children or Parent} Node not RET_NOTFOUND = RET_TREE - 6 #/* Nothing found, in the search */ RET_CANNOTSAVE = RET_TREE - 7 #/* Cannot save the file */ -#RET_ = "" +#RET_ = "" |