View Single Post
Posts: 105 | Thanked: 205 times | Joined on Dec 2015 @ Spain
#309
Originally Posted by mautz View Post
With the new version i sometimes get an error(Error in Okboard._set_context:Outdated database (11/15) -> Resetting all data).

I tried to fix it by compiling my language files again, but this doesn't fix it.
My old language files had db version 11, the new ones have 15....
Which language are u using? I mean, which dictionary are you instaled on OKBoard?

I have the same error which log is:

Code:
Exception in function Okboard._set_context: Outdated database (11/15) -> Resetting all data
Traceback (most recent call last):
  File "/usr/share/maliit/plugins/eu/cpbm/okboard/okboard.py", line 77, in wrapper
    return func(*params, **kwargs)
  File "/usr/share/maliit/plugins/eu/cpbm/okboard/okboard.py", line 293, in _set_context
    if message: raise Exception(message)
Exception: Outdated database (11/15) -> Resetting all data
As the error has no consequences for the normal use of OKBoard, you can easily disable this alert by comment line 293 on /usr/share/maliit/plugins/eu/cpbm/okboard/okboard.py

Original line:

Code:
        # display the message as an error
        if message: raise Exception(message)
Change it by:

Code:
        # display the message as an error
        # if message: raise Exception(message)
 

The Following User Says Thank You to ferlanero For This Useful Post: