CodingStandards : No space in indentation

This commit is contained in:
Jean-Marie Traissard 2007-12-27 18:58:07 +00:00
parent a707eaa050
commit 314a52708e
6 changed files with 14 additions and 14 deletions

View File

@ -429,7 +429,7 @@ def launch_browser_mailer(kind, uri):
command = 'kfmclient exec' command = 'kfmclient exec'
elif gajim.config.get('openwith') == 'exo-open': elif gajim.config.get('openwith') == 'exo-open':
command = 'exo-open' command = 'exo-open'
elif ((sys.platform == 'darwin') and elif ((sys.platform == 'darwin') and\
(gajim.config.get('openwith') == 'open')): (gajim.config.get('openwith') == 'open')):
command = 'open' command = 'open'
elif gajim.config.get('openwith') == 'custom': elif gajim.config.get('openwith') == 'custom':
@ -459,7 +459,7 @@ def launch_file_manager(path_to_open):
command = 'kfmclient exec' command = 'kfmclient exec'
elif gajim.config.get('openwith') == 'exo-open': elif gajim.config.get('openwith') == 'exo-open':
command = 'exo-open' command = 'exo-open'
elif ((sys.platform == 'darwin') and elif ((sys.platform == 'darwin') and\
(gajim.config.get('openwith') == 'open')): (gajim.config.get('openwith') == 'open')):
command = 'open' command = 'open'
elif gajim.config.get('openwith') == 'custom': elif gajim.config.get('openwith') == 'custom':

View File

@ -419,7 +419,7 @@ class PreferencesWindow:
self.applications_combobox.set_active(2) self.applications_combobox.set_active(2)
elif gajim.config.get('openwith') == 'exo-open': elif gajim.config.get('openwith') == 'exo-open':
self.applications_combobox.set_active(3) self.applications_combobox.set_active(3)
elif ((sys.platform == 'darwin') and elif ((sys.platform == 'darwin') and\
(gajim.config.get('openwith') == 'open')): (gajim.config.get('openwith') == 'open')):
self.applications_combobox.set_active(1) self.applications_combobox.set_active(1)
elif gajim.config.get('openwith') == 'custom': elif gajim.config.get('openwith') == 'custom':