mirror of
https://github.com/dcs-retribution/dcs-retribution.git
synced 2025-11-10 15:41:24 +00:00
Remove debugging try-except
This commit is contained in:
parent
386844378e
commit
5909ce372b
@ -45,11 +45,7 @@ class MigrationUnpickler(pickle.Unpickler):
|
||||
if name == "Thunderstorm":
|
||||
from game.weather.weather import Thunderstorm
|
||||
return Thunderstorm
|
||||
try:
|
||||
return super().find_class(module, name)
|
||||
except AttributeError:
|
||||
print(module, name)
|
||||
return None
|
||||
return super().find_class(module, name)
|
||||
# fmt: on
|
||||
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user