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

gdialog: keep code under 80 chars, where possible

Changeset 7cbb2ee66bf8

Parent 8e98be2220d7

by Steve Borho

Changes to one file · Browse files at 7cbb2ee66bf8 Showing diff from parent 8e98be2220d7 Diff from another changeset...

Change 1 of 1 Show Entire File hggtk/​gdialog.py Stacked
 
227
228
229
230
 
 
231
232
233
 
227
228
229
 
230
231
232
233
234
@@ -227,7 +227,8 @@
    def global_opts(self):   globalopts = {} - hgglobals = [opt[1].replace('-', '_') for opt in commands.globalopts if opt[1] != 'help'] + hgglobals = [opt[1] for opt in commands.globalopts if opt[1] != 'help'] + hgglobals = [f.replace('-', '_') for f in hgglobals]   for key in self.opts:   if key in hgglobals :   globalopts[key] = self.opts[key]