Changeset 9069 for branches/gajim_0.11.3-bugfixes/src/gajim.py
- Timestamp:
- 11/28/07 23:17:48 (12 months ago)
- Files:
-
- 1 modified
-
branches/gajim_0.11.3-bugfixes/src/gajim.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/gajim_0.11.3-bugfixes/src/gajim.py
r9054 r9069 2061 2061 } 2062 2062 2063 parser.read()2063 cfg_was_read = parser.read() 2064 2064 # Do not set gajim.verbose to False if -v option was given 2065 2065 if gajim.config.get('verbose'): … … 2095 2095 theme[d.index(o)]) 2096 2096 2097 if gajim.config.get('autodetect_browser_mailer') or \ 2098 len(gajim.connections) == 0: 2097 if gajim.config.get('autodetect_browser_mailer') or not cfg_was_read: 2099 2098 gtkgui_helpers.autodetect_browser_mailer() 2100 2099
