mirror of
https://github.com/ankitects/anki.git
synced 2025-09-24 08:46:37 -04:00
fix wrong var name in previous warning fix
This commit is contained in:
parent
4037a034aa
commit
3464b5fd80
1 changed files with 1 additions and 1 deletions
|
@ -358,7 +358,7 @@ class DeckManager:
|
||||||
def confId(self, name, cloneFrom=None):
|
def confId(self, name, cloneFrom=None):
|
||||||
"Create a new configuration and return id."
|
"Create a new configuration and return id."
|
||||||
if cloneFrom is None:
|
if cloneFrom is None:
|
||||||
type = defaultConf
|
cloneFrom = defaultConf
|
||||||
c = copy.deepcopy(cloneFrom)
|
c = copy.deepcopy(cloneFrom)
|
||||||
while 1:
|
while 1:
|
||||||
id = intTime(1000)
|
id = intTime(1000)
|
||||||
|
|
Loading…
Reference in a new issue