diff options
-rw-r--r-- | buildscripts/cleanbb.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/buildscripts/cleanbb.py b/buildscripts/cleanbb.py index dd52020d7e4..60d2aec37cc 100644 --- a/buildscripts/cleanbb.py +++ b/buildscripts/cleanbb.py @@ -27,7 +27,7 @@ def shouldKill( c ): if c.find( cwd ) >= 0: return True - if ( c.find( "buildbot" ) >= 0 or c.find( "slave" ) ) and c.find( "/mongo/" ) >= 0: + if ( c.find( "buildbot" ) >= 0 or c.find( "slave" ) >= 0 ) and c.find( "/mongo/" ) >= 0: return True if c.find( "xml-data/build-dir" ) >= 0: # for bamboo |