Comment #2 on issue 1496 by Marcin.Koperski: Add option to Create Dictiory using config file
http://code.google.com/p/robotframework/issues/detail?id=1496

This code will work properly added to operation system library
u need to additional import
import ConfigParser


    def import_dictionary(self, file, section):
        config = ConfigParser.ConfigParser()
        config.read(file)
        list = config.items(section)
        return dict(list)

--
You received this message because this project is configured to send all issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings

--

--- You received this message because you are subscribed to the Google Groups "robotframework-commit" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to robotframework-commit+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to