diff --git a/cleanup b/cleanup index 41d56bf..87bf557 100755 --- a/cleanup +++ b/cleanup @@ -30,7 +30,6 @@ def cleanUpScreens(): def cleanup(): print "*** Removing all links of the pattern foo-ethX" links = sh( "ip link show | egrep -o '(\w+-eth\w+)'" ).split( '\n' ) - print links for link in links: if link != '': sh( "ip link del " + link )