I want to exclude a certain tag from WP_query
<?php $recent = new WP_Query("tag=north-indian&showposts=1"); while($recent->have_posts()) : $recent->the_post();?>
such that it displays all posts related to the tag "north-indian" and none to the tag "south-indian"