10 lines
211 B
Python
Executable file
10 lines
211 B
Python
Executable file
"""
|
|
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
|