src/eric7/Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py

branch
eric7
changeset 10069
435cc5875135
parent 9653
e67609152c5e
child 10438
4cd7e5a8b3cf
equal deleted inserted replaced
10068:7febcdccb2a1 10069:435cc5875135
701 False, 701 False,
702 self.vcs, 702 self.vcs,
703 ) 703 )
704 self.queuesListQueuesDialog.show() 704 self.queuesListQueuesDialog.show()
705 705
706 def hgQueueInit(self, name): 706 def hgQueueInit(self):
707 """ 707 """
708 Public method to initialize a new queue repository. 708 Public method to initialize a new queue repository.
709
710 @param name directory name (string)
711 """ 709 """
712 args = self.vcs.initCommand("init") 710 args = self.vcs.initCommand("init")
713 args.append("--mq") 711 args.append("--mq")
714 args.append(self.vcs.getClient().getRepository()) 712 args.append(self.vcs.getClient().getRepository())
715 # init is not possible with the command server 713 # init is not possible with the command server

eric ide

mercurial