Revision 3495
Added by Aaron Marcuse-Kubitza over 12 years ago
lib/sql.py | ||
---|---|---|
948 | 948 |
log_ignore_excs=(DuplicateException,)) |
949 | 949 |
break # successful |
950 | 950 |
except DuplicateException: |
951 |
func.name = sql.next_version(func.name)
|
|
951 |
func.name = next_version(func.name) |
|
952 | 952 |
# try again with next version of name |
953 | 953 |
|
954 | 954 |
def mk_flatten_mapping(db, into, cols, preserve=[], as_items=False): |
Also available in: Unified diff
sql.py: define_func(): Fixed bug where next_version() needed to have module name removed since it's in the same module