Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.9.2, 1.1.9, and 1.1.9.1

stable bugtraq: remove trailing white-space and semicolons

Changeset 08e98aa13fcb

Parent f6b5e2f45ff2

by Steve Borho

Changes to one file · Browse files at 08e98aa13fcb Showing diff from parent f6b5e2f45ff2 Diff from another changeset...

 
108
109
110
111
 
112
113
114
 
116
117
118
119
 
120
121
122
 
145
146
147
148
 
149
150
 
151
152
153
 
165
166
167
168
169
 
108
109
110
 
111
112
113
114
 
116
117
118
 
119
120
121
122
 
145
146
147
 
148
149
 
150
151
152
153
 
165
166
167
 
 
@@ -108,7 +108,7 @@
  errormessage = bugtr.OnCommitFinished(0, commonroot, pathlist,   logmessage, 0)   return errormessage - +   def show_options_dialog(self, options):   if not self.has_options():   return "" @@ -116,7 +116,7 @@
  bugtr = self._get_bugtraq_object()   options = bugtr.ShowOptionsDialog(0, options)   return options - +   def has_options(self):   if not self.supports_bugtraq2_interface():   return False @@ -145,9 +145,9 @@
  ret = []   enumerator = cm.EnumClassesOfCategories((CATID_BugTraqProvider,),())   while 1: - clsid = enumerator.Next(); + clsid = enumerator.Next()   if clsid == (): - break; + break     ret.extend(clsid)   return ret @@ -165,5 +165,3 @@
  pluginclsids = get_issue_plugins()   keyandnames = [(key, get_plugin_name(key)) for key in pluginclsids]   return [kn for kn in keyandnames if kn[1] is not None] - -