File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -393,7 +393,7 @@ def on_feature_set_preload_dispvm_max(
393393 return
394394 if not (appvm := getattr (self .app , "default_dispvm" , None )):
395395 return
396- reason = "global feature was set to " + str (value )
396+ reason = "global feature was set to " + repr (value )
397397 asyncio .ensure_future (
398398 appvm .fire_event_async ("domain-preload-dispvm-start" , reason = reason )
399399 )
Original file line number Diff line number Diff line change @@ -143,7 +143,7 @@ def on_feature_set_preload_dispvm_max(
143143 return
144144 if self .is_global_preload_set ():
145145 return
146- reason = "local feature was set to " + str (value )
146+ reason = "local feature was set to " + repr (value )
147147 asyncio .ensure_future (
148148 self .fire_event_async ("domain-preload-dispvm-start" , reason = reason )
149149 )
You can’t perform that action at this time.
0 commit comments