mirror of
https://github.com/lutris/lutris
synced 2024-11-02 12:40:46 +00:00
Fix fuckup in migrations.__init__ (Fixes #1282)
This commit is contained in:
parent
6f3646f951
commit
6b8e5de160
1 changed files with 1 additions and 1 deletions
|
@ -26,7 +26,7 @@ MIGRATIONS.append([
|
|||
|
||||
|
||||
def get_migration_module(migration_name):
|
||||
return importlib.import_module('lutris.migrations.%s', migration_name)
|
||||
return importlib.import_module('lutris.migrations.%s' % migration_name)
|
||||
|
||||
|
||||
def migrate():
|
||||
|
|
Loading…
Reference in a new issue