hgext/bookmarks.py
changeset 8527 f9a80054dd3c
parent 8225 46293a0c7e9f
child 8725 353b1c160c2d
--- a/hgext/bookmarks.py	Wed May 20 00:43:23 2009 +0200
+++ b/hgext/bookmarks.py	Wed May 20 00:52:46 2009 +0200
@@ -143,7 +143,7 @@
         return
 
     if delete:
-        if mark == None:
+        if mark is None:
             raise util.Abort(_("bookmark name required"))
         if mark not in marks:
             raise util.Abort(_("a bookmark of this name does not exist"))
@@ -171,7 +171,7 @@
         write(repo, marks)
         return
 
-    if mark == None:
+    if mark is None:
         if rev:
             raise util.Abort(_("bookmark name required"))
         if len(marks) == 0:
@@ -243,7 +243,7 @@
             """Add a revision to the repository and
             move the bookmark"""
             node  = super(bookmark_repo, self).commit(*k, **kw)
-            if node == None:
+            if node is None:
                 return None
             parents = repo.changelog.parents(node)
             if parents[1] == nullid: