Changeset 9069
- Timestamp:
- 11/28/07 23:17:48 (10 months ago)
- Location:
- branches/gajim_0.11.3-bugfixes/src
- Files:
-
- 2 modified
-
common/optparser.py (modified) (2 diffs)
-
gajim.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/gajim_0.11.3-bugfixes/src/common/optparser.py
r8700 r9069 58 58 #we talk about a file 59 59 print _('error: cannot open %s for reading') % self.__filename 60 return 60 return False 61 61 62 62 new_version = gajim.config.get('version') … … 73 73 74 74 fd.close() 75 return True 75 76 76 77 def write_line(self, fd, opt, parents, value): -
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
