# This patch file was generated by NetBeans IDE
# Following Index: paths are relative to: /home/bcq/NetBeansProjects/nagare/core/nagare
# This patch can be applied using context Tools: Patch action on respective folder.
# It uses platform neutral UTF-8 encoding and \n newlines.
# Above lines and this line are ignored by the patching process.
|
|
|
|
| 241 | 241 | def _go(self, comp): |
| 242 | 242 | # If I was not called by an other component (I'am the root component), |
| 243 | 243 | # I call forever my ``go()`` method |
| 244 | | if comp._channel is None: |
| | 244 | if comp._channel is None and comp._on_answer is None: |
| 245 | 245 | while True: |
| 246 | 246 | self.go(comp) |
| 247 | 247 | |