mirror of
https://github.com/rbreu/beeref.git
synced 2026-03-11 08:54:28 +00:00
Fix file permissions in bee files
This commit is contained in:
parent
e18de58024
commit
e5b37ab44d
1 changed files with 2 additions and 2 deletions
|
|
@ -213,8 +213,8 @@ class SQLiteIO:
|
|||
|
||||
self.ex(
|
||||
'INSERT INTO sqlar (item_id, name, mode, sz, data) '
|
||||
'VALUES (?, ?, 644, ?, ?)',
|
||||
(item.save_id, name, len(pixmap), pixmap))
|
||||
'VALUES (?, ?, ?, ?, ?)',
|
||||
(item.save_id, name, 0o644, len(pixmap), pixmap))
|
||||
self.connection.commit()
|
||||
|
||||
def update_item(self, item):
|
||||
|
|
|
|||
Loading…
Reference in a new issue