diff mercurial/commands.py @ 4659:7a7d4937272b

Kill trailing spaces
author Thomas Arendsen Hein <thomas@intevation.de>
date Thu, 21 Jun 2007 09:25:49 +0200
parents 15e22b483adc
children f9b8ea362b49 272c0a09b203
line wrap: on
line diff
--- a/mercurial/commands.py
+++ b/mercurial/commands.py
@@ -2515,7 +2515,7 @@ def tag(ui, repo, name, rev_=None, **opt
         rev_ = opts['rev']
     message = opts['message']
     if opts['remove']:
-        if not name in repo.tags(): 
+        if not name in repo.tags():
             raise util.Abort(_('tag %s does not exist') % name)
         rev_ = nullid
         if not message: