Remove unnecessary .absolute_path thanks to fspath.
This commit is contained in:
parent
6867d32798
commit
b2abb29626
1 changed files with 2 additions and 3 deletions
|
@ -17,10 +17,9 @@ def upgrade_1_to_2(db):
|
||||||
cur = db.sql.cursor()
|
cur = db.sql.cursor()
|
||||||
redmash_dir = db.index_dir.parent.with_child('redmash')
|
redmash_dir = db.index_dir.parent.with_child('redmash')
|
||||||
if redmash_dir.exists:
|
if redmash_dir.exists:
|
||||||
if not redmash_dir.is_dir:
|
redmash_dir.assert_is_directory()
|
||||||
raise Exception(f'{redmash_dir.absolute_path} is not a directory!')
|
|
||||||
print('Renaming redmash folder to index.')
|
print('Renaming redmash folder to index.')
|
||||||
os.rename(redmash_dir.absolute_path, db.index_dir.absolute_path)
|
os.rename(redmash_dir, db.index_dir)
|
||||||
|
|
||||||
def upgrade_all(database_filename):
|
def upgrade_all(database_filename):
|
||||||
'''
|
'''
|
||||||
|
|
Loading…
Reference in a new issue