[FIX] service/model.py: fixed missing import of psycopg error OperationalError added when merging 7.0 into trunk.

bzr revid: tde@openerp.com-20130405133203-ijustxnwkabw3no6
This commit is contained in:
Thibault Delavallée 2013-04-05 15:32:03 +02:00
parent d8b3533a82
commit 58ccbfc184
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@
from functools import wraps
import logging
from psycopg2 import IntegrityError, errorcodes
from psycopg2 import IntegrityError, OperationalError, errorcodes
import random
import threading
import time