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(
393
393
return
394
394
if not (appvm := getattr (self .app , "default_dispvm" , None )):
395
395
return
396
- reason = "global feature was set to " + str (value )
396
+ reason = "global feature was set to " + repr (value )
397
397
asyncio .ensure_future (
398
398
appvm .fire_event_async ("domain-preload-dispvm-start" , reason = reason )
399
399
)
Original file line number Diff line number Diff line change @@ -143,7 +143,7 @@ def on_feature_set_preload_dispvm_max(
143
143
return
144
144
if self .is_global_preload_set ():
145
145
return
146
- reason = "local feature was set to " + str (value )
146
+ reason = "local feature was set to " + repr (value )
147
147
asyncio .ensure_future (
148
148
self .fire_event_async ("domain-preload-dispvm-start" , reason = reason )
149
149
)
You can’t perform that action at this time.
0 commit comments