Hi!

I have a class who has a pool dictionary defined as

... subclass: #MyClass
��� instanceVariableNames: ''
��� classVariableNames: ''
��� poolDictionaries: 'MyPoolDict'
�� ..

And when I load that class from monticello, he warns me with

This package depends on the following classes:
� "MyPoolDict"
You must resolve these dependencies before you will be able to load these definitions:


If before loading the package I declare a global named MyPoolDict it loads well...

Of course, I can put a preload in a metacello configuration to declare the global, but it sucks :).

Can anyone point me in the right direction? (or maybe it's a bug... :/)

Thanks!
Guille