Revision: 416dd7dcb014
Branch:   default
Author:   Mikko Korpela <[email protected]>
Date:     Fri Jan 24 07:02:45 2014 UTC
Log:      populators: Fix typo and remove old wrong comment
http://code.google.com/p/robotframework/source/detail?r=416dd7dcb014

Modified:
 /src/robot/parsing/populators.py

=======================================
--- /src/robot/parsing/populators.py    Thu Jan 23 14:00:53 2014 UTC
+++ /src/robot/parsing/populators.py    Fri Jan 24 07:02:45 2014 UTC
@@ -111,7 +111,7 @@
         if init_file:
             self._populate_init_file(datadir, init_file)
         if recurse:
-            self._populate_chidren(datadir, children, include_suites,
+            self._populate_children(datadir, children, include_suites,
                                    warn_on_skipped)

     def _populate_init_file(self, datadir, init_file):
@@ -121,7 +121,7 @@
         except DataError, err:
             LOGGER.error(unicode(err))

- def _populate_chidren(self, datadir, children, include_suites, warn_on_skipped): + def _populate_children(self, datadir, children, include_suites, warn_on_skipped):
         for child in children:
             try:
                 datadir.add_child(child, include_suites)
@@ -146,7 +146,6 @@
         return incl_suites

     def _create_included_suites(self, incl_suites):
-        # Use only the last part of names given like '--suite parent.child'
         result = []
         for splitted in (i.split('.') for i in incl_suites or []):
             for j in range(1, len(splitted)+1):

--

--- 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 [email protected].
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to