##// END OF EJS Templates
dependencies: bumped pinned libraries....
dependencies: bumped pinned libraries. atomicwrites==1.3.0 configparser==4.0.2 cffi==1.12.3 hupper==1.8.1 pluggy==0.13.0

File last commit:

r1:854a839a default
r3958:93dec798 default
Show More
util.py
10 lines | 211 B | text/x-python | PythonLexer
"""
Safe quoting method
"""
def safe_quote(obj):
# this is the SQLA 0.9 approach
if hasattr(obj, 'name') and hasattr(obj.name, 'quote'):
return obj.name.quote
else:
return obj.quote