Commit 58192665034998e533b0ac9fd42aec3190fb287e
1 parent
36a114f5
mały bugfix w imporcie
Showing
1 changed file
with
1 additions
and
1 deletions
dictionary/management/commands/import_data.py
... | ... | @@ -422,7 +422,7 @@ class ImportData(object): |
422 | 422 | (MINI_LEXEME_COUNT,)) |
423 | 423 | else: |
424 | 424 | result = self.sqlite_cursor.execute( |
425 | - 'SELECT * FROM odmieniasie JOIN leksemy l ON o.nr = l.nr') | |
425 | + 'SELECT * FROM odmieniasie o JOIN leksemy l ON o.nr = l.nr') | |
426 | 426 | lips = [] |
427 | 427 | lip_quals = [] |
428 | 428 | for row in result: |
... | ... |