Allow direct navigation (i.e. typing of paths) in the file manager. Fixes #1911

This commit is contained in:
Harshal Dhumal
2017-02-03 10:51:36 +01:00
committed by Dave Page
parent 687a793383
commit 4ef26a528b
7 changed files with 627 additions and 268 deletions

View File

@@ -197,7 +197,7 @@ class _Preference(object):
)
db.session.add(pref)
else:
pref.value = str(value)
pref.value = u"{}".format(value)
db.session.commit()
return True, None