Skip to content

Commit ee3a4fa

Browse files
committed
behavior_version, small fix
1 parent 767a15e commit ee3a4fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

returnn/util/basic.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ def set(cls, version):
201201
if version == cls._behavior_version:
202202
return
203203
assert not cls.is_set(), (
204-
"behavior_version already set to %i, cannot reset to %i" % (cls._behavior_version, version))
204+
"behavior_version already set to %s, cannot reset to %i" % (cls._behavior_version, version))
205205
assert version >= 0
206206
if version > cls._latest_behavior_version:
207207
log.print_warning(

0 commit comments

Comments
 (0)