Am 21-01-2014 12:03, schrieb shaohef(a)linux.vnet.ibm.com:
@@ -154,3 +155,41 @@ def run_command(cmd, timeout=None):
finally:
if timer and not timeout_flag[0]:
timer.cancel()
+
+
+class urlSubNode(object):
According to the PEP8, class names should normally use
the CapWords
convention. Please use something like "UrlSubNode".