Hi Sebastian,
which version are you using? I looked into 3.0 and 4.0, and there is nothing there about setting packageList to nil in MCFileRepositoryInspector.
ThierryDe : Pharo-dev [pharo-dev-bounces@lists.pharo.org] de la part de Sebastian Sastre [sebastian@flowingconcept.com]
Envoy� : lundi 7 juillet 2014 22:45
� : Pharo Development List
Objet : [Pharo-dev] Workaround monticello issueHi there,I�ve just hit an issue that prevented to open packages in monticelloMessageNotUnderstood: receiver of "indexOf:" is nilUndefinedObject(Object)>>doesNotUnderstand: #indexOf:MCFileRepositoryInspector>>packageSelectionPluggableListMorph>>getCurrentSelectionIndexPluggableListMorph>>updateListPluggableListMorph>>update:MCFileRepositoryInspector(Object)>>changed: in Block: [ :aDependent | aDependent update: aParameter ]DependentsArray>>do:MCFileRepositoryInspector(Object)>>changed:MCFileRepositoryInspector>>refreshMCFileRepositoryInspector>>setRepository:workingCopy: in Block: [ ...BlockClosure>>newProcess in Block: [ ...This is what I�m using as hacky workaround:MCFileRepositoryInspector>>packageSelection^ self packageList isNilifTrue:[ 1 ]ifFalse:[ self packageList indexOf: selectedPackage ]The problem is that packageList is nil for some reason.Looks like filetree is involved since1. I�m using it and2. it sets an extension method #refresh that makes packageList := nil