File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -426,20 +426,20 @@ class ArcticLibraryBinding(object):
426
426
quota_countdown = 0
427
427
428
428
@classmethod
429
- def _parse_db_lib (clz , library ):
429
+ def _parse_db_lib (cls , library ):
430
430
"""
431
431
Returns the canonical (database_name, library) for the passed in
432
432
string 'library'.
433
433
"""
434
434
database_name = library .split ('.' , 2 )
435
435
if len (database_name ) == 2 :
436
436
library = database_name [1 ]
437
- if database_name [0 ].startswith (clz .DB_PREFIX ):
437
+ if database_name [0 ].startswith (cls .DB_PREFIX ):
438
438
database_name = database_name [0 ]
439
439
else :
440
- database_name = clz .DB_PREFIX + '_' + database_name [0 ]
440
+ database_name = cls .DB_PREFIX + '_' + database_name [0 ]
441
441
else :
442
- database_name = clz .DB_PREFIX
442
+ database_name = cls .DB_PREFIX
443
443
return database_name , library
444
444
445
445
def __init__ (self , arctic , library ):
You can’t perform that action at this time.
0 commit comments