14 lines
274 B
Python
14 lines
274 B
Python
|
import anki.sync
|
||
|
import anki.hooks
|
||
|
import aqt
|
||
|
|
||
|
anki.sync.SYNC_BASE = "https://anki.sbruder.de/%s"
|
||
|
anki.sync.SYNC_MEDIA_BASE = "https://anki.sbruder.de/msync%s"
|
||
|
|
||
|
|
||
|
def resetHostNum():
|
||
|
aqt.mw.pm.profile["hostNum"] = None
|
||
|
|
||
|
|
||
|
anki.hooks.addHook("profileLoaded", resetHostNum)
|