<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=UTF-8" http-equiv="Content-Type">
  <title></title>
</head>
<body bgcolor="#ffffcc" text="#000066">
<tt>I thought I had fixed this already. Anyway, looks good.<br>
<br>
</tt><tt><br>
Signed-off-by: Marcos Matsunaga <a class="moz-txt-link-rfc2396E" href="mailto:Marcos.Matsunaga@oracle.com">&lt;Marcos.Matsunaga@oracle.com&gt;</a></tt><br>
<pre class="moz-signature" cols="72">Regards,

Marcos Eduardo Matsunaga

Oracle USA
Linux Engineering

“The statements and opinions expressed here are my own and do not
necessarily represent those of Oracle Corporation.”
</pre>
<br>
<br>
Tristan Ye wrote:
<blockquote
 cite="mid:1221641330-31705-5-git-send-email-tristan.ye@oracle.com"
 type="cite">
  <pre wrap="">Should replace the add method with append for list(nodelist),since
'list' object has no attribute 'add'.

Signed-off-by: Tristan Ye <a class="moz-txt-link-rfc2396E" href="mailto:tristan.ye@oracle.com">&lt;tristan.ye@oracle.com&gt;</a>
---
 programs/create_racer/run_create_racer.py |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/programs/create_racer/run_create_racer.py b/programs/create_racer/run_create_racer.py
index 0e790e6..4a58a9c 100644
--- a/programs/create_racer/run_create_racer.py
+++ b/programs/create_racer/run_create_racer.py
@@ -122,7 +122,7 @@ if __name__=='__main__':
                 nodelen = len(nodelist)
                 procs = nodelen
                 if nodelen == 1:
-                        nodelist = nodelist.add(options.nodelist)
+                        nodelist = nodelist.append(options.nodelist)
                 else:
                         nodelist = options.nodelist.split(',')
         else:
  </pre>
</blockquote>
</body>
</html>