Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.8, 0.8.1, and 0.8.2

menuthg: remove prints from menu generation

Changeset 07af2dd1e6dd

Parent 8172efe56f89

by Steve Borho

Changes to one file · Browse files at 07af2dd1e6dd Showing diff from parent 8172efe56f89 Diff from another changeset...

 
90
91
92
93
94
95
96
97
98
99
100
 
103
104
105
106
107
108
109
110
111
 
132
133
134
135
136
137
138
139
140
141
142
 
90
91
92
 
 
 
 
 
93
94
95
 
98
99
100
 
 
 
101
102
103
 
124
125
126
 
 
 
 
 
127
128
129
@@ -90,11 +90,6 @@
  Commands are instances of TortoiseMenu, TortoiseMenuSep or TortoiseMenu   """   - try: - print "_get_commands_dragdrop() on %s" % ", ".join(files) - except: - print "_get_commands_dragdrop() on some files" -   # we can only accept dropping one item   if len(srcfiles) > 1:   return [] @@ -103,9 +98,6 @@
  drag_repo = None   drop_repo = None   - print "drag = %s" % self.srcfiles[0] - print "drop = %s" % self.destfolder -   drag_path = self.srcfiles[0]   drag_repo = open_repo(drag_path)   if not drag_repo: @@ -132,11 +124,6 @@
    Commands are instances of TortoiseMenu, TortoiseMenuSep or TortoiseMenu   """ - try: - print "_get_commands() on %s" % ", ".join(files) - except: - print "_get_commands() on some files" -   # open repo   if type(files) != list:   files = [files]