diff --git a/cleanup b/cleanup
index 41d56bf151bd9b7fefb90d29169bc9867d2444b5..87bf557672975e972bc495bbd7e239d4d1a0ad3f 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 )