CodingStandards : No space in indentation
This commit is contained in:
parent
a707eaa050
commit
314a52708e
|
@ -429,7 +429,7 @@ def launch_browser_mailer(kind, uri):
|
|||
command = 'kfmclient exec'
|
||||
elif gajim.config.get('openwith') == 'exo-open':
|
||||
command = 'exo-open'
|
||||
elif ((sys.platform == 'darwin') and
|
||||
elif ((sys.platform == 'darwin') and\
|
||||
(gajim.config.get('openwith') == 'open')):
|
||||
command = 'open'
|
||||
elif gajim.config.get('openwith') == 'custom':
|
||||
|
@ -459,7 +459,7 @@ def launch_file_manager(path_to_open):
|
|||
command = 'kfmclient exec'
|
||||
elif gajim.config.get('openwith') == 'exo-open':
|
||||
command = 'exo-open'
|
||||
elif ((sys.platform == 'darwin') and
|
||||
elif ((sys.platform == 'darwin') and\
|
||||
(gajim.config.get('openwith') == 'open')):
|
||||
command = 'open'
|
||||
elif gajim.config.get('openwith') == 'custom':
|
||||
|
|
|
@ -419,7 +419,7 @@ class PreferencesWindow:
|
|||
self.applications_combobox.set_active(2)
|
||||
elif gajim.config.get('openwith') == 'exo-open':
|
||||
self.applications_combobox.set_active(3)
|
||||
elif ((sys.platform == 'darwin') and
|
||||
elif ((sys.platform == 'darwin') and\
|
||||
(gajim.config.get('openwith') == 'open')):
|
||||
self.applications_combobox.set_active(1)
|
||||
elif gajim.config.get('openwith') == 'custom':
|
||||
|
|
Loading…
Reference in New Issue