# HG changeset patch
# User Aurelien Campeas <aurelien.campeas@logilab.fr>
# Date 1251208577 -7200
#      Tue Aug 25 15:56:17 2009 +0200
# Node ID 71f875e3e2c19d0481e25cd15b66cac517507ef9
# Parent  b908665ad24d9a803922ee9cc0d57a94303750a7
remove double !! in typeresolver exception msg

diff --git a/analyze.py b/analyze.py
--- a/analyze.py
+++ b/analyze.py
@@ -318,7 +318,7 @@
 
         if not sols:
             rql = node.as_string('utf8', self.kwargs)
-            ex_msg = 'Unable to resolve variables types in "%s"!!' % (rql,)
+            ex_msg = 'Unable to resolve variables types in "%s"' % (rql,)
             if True or self.debug:
                 ex_msg += '\n%s' % (constraints.get_output(),)
             raise TypeResolverException(ex_msg)