Advertisement
Guest User

mq weirdness

a guest
Jun 27th, 2013
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.66 KB | None | 0 0
  1. diff --git a/hgext/mq.py b/hgext/mq.py
  2. --- a/hgext/mq.py
  3. +++ b/hgext/mq.py
  4. @@ -298,6 +298,7 @@ class AbortNoCleanup(error.Abort):
  5.  
  6.  class queue(object):
  7.      def __init__(self, ui, baseui, path, patchdir=None):
  8. +        print 'new queue'
  9.          self.basepath = path
  10.          try:
  11.              fh = open(os.path.join(path, 'patches.queue'))
  12. @@ -3455,6 +3456,9 @@ def reposetup(ui, repo):
  13.              '''augment tags from base class with patch tags'''
  14.              result = super(mqrepo, self)._findtags()
  15.  
  16. +            self.mq
  17. +            self.mq
  18. +            self.mq
  19.              q = self.mq
  20.              if not q.applied:
  21.                  return result
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement