while trying to unpickle serialized data I run into a ImportError, albeit the needed is loaded.
From this question I learnd that pickle expects the same package structure during unpickling as the package structure used during pickeling.
Is there some way to extract the expected package layout from pickled objects to restore the original package layout and solve this issue? Help would be greatly appreciated, as otherwise I had to test several hundred revisions of a project to finde the one working for unpickeling the data.
EDIT Tanks for the hint. Of course it is ment to be package structure not path structure.