mirror of
https://github.com/ankitects/anki.git
synced 2025-09-23 08:22:24 -04:00
fix non-unicode 'something' warning
This commit is contained in:
parent
44e9859c53
commit
eaf0be9bed
1 changed files with 1 additions and 1 deletions
|
@ -784,7 +784,7 @@ To upgrade an old deck, download Anki 0.9.8.7."""))
|
||||||
# ensure all changes come to us
|
# ensure all changes come to us
|
||||||
self.deck.modified = 0
|
self.deck.modified = 0
|
||||||
self.deck.s.commit()
|
self.deck.s.commit()
|
||||||
self.deck.syncName = "something"
|
self.deck.syncName = u"something"
|
||||||
self.deck.lastLoaded = self.deck.modified
|
self.deck.lastLoaded = self.deck.modified
|
||||||
if self.config['syncUsername'] and self.config['syncPassword']:
|
if self.config['syncUsername'] and self.config['syncPassword']:
|
||||||
if self.syncDeck(onlyMerge=True, reload=2):
|
if self.syncDeck(onlyMerge=True, reload=2):
|
||||||
|
|
Loading…
Reference in a new issue