Commit 715f332f authored by Cristiano Urban's avatar Cristiano Urban
Browse files

Minor change.

parent 0daba0ce
Loading
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -87,15 +87,15 @@ class DataRPCServer(RedisRPCServer):
            try:
                rapCli = RapClient()
                rapInfo = rapCli.getUserInfo(user)
            except MultipleUsersException:
                errorMsg = "Multiple users with the same email address in RAP."
            except HTTPException:
                errorMsg = "HTTP exception."
                self.logger.exception(errorMsg)
                response = { "responseType": "ERROR",
                             "errorCode": 6,
                             "errorMsg": errorMsg }
                return response
            except HTTPException:
                errorMsg = "HTTP exception."
            except MultipleUsersException:
                errorMsg = "Multiple users with the same email address in RAP."
                self.logger.exception(errorMsg)
                response = { "responseType": "ERROR",
                             "errorCode": 7,