Show
Ignore:
Timestamp:
24/08/07 14:26:25 (3 years ago)
Author:
athomas
Message:

pyndexter: More cleanup for new branch.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • pyndexter/branches/simplification/pyndexter/query.py

    r457 r458  
    99 
    1010import re 
    11 from pyndexter import errors 
    12  
    13  
    14 class InvalidQuery(errors.Error): 
     11from pyndexter import Error 
     12 
     13 
     14__all__ = ['Query'] 
     15 
     16 
     17class InvalidQuery(Error): 
    1518    """Invalid query string.""" 
    16  
    17  
    18 __all__ = ['Query'] 
    1919 
    2020