Remove some FIXMEs

This commit is contained in:
Florian Bruhin 2017-06-30 19:54:30 +02:00
parent 7ee222af88
commit bc526cf0ce
2 changed files with 3 additions and 7 deletions

View File

@ -963,7 +963,6 @@ prompt.radius:
## scrolling ## scrolling
scrolling.bar: scrolling.bar:
# FIXME:conf meaning changed!
type: Bool type: Bool
default: false default: false
desc: Show a scrollbar. desc: Show a scrollbar.

View File

@ -255,9 +255,8 @@ class _CrashDialog(QDialog):
except Exception: except Exception:
self._crash_info.append(("Version info", traceback.format_exc())) self._crash_info.append(("Version info", traceback.format_exc()))
try: try:
# FIXME:conf self._crash_info.append(("Config",
conf = objreg.get('config') config.instance.dump_userconfig()))
self._crash_info.append(("Config", conf.dump_userconfig()))
except Exception: except Exception:
self._crash_info.append(("Config", traceback.format_exc())) self._crash_info.append(("Config", traceback.format_exc()))
try: try:
@ -636,9 +635,7 @@ def dump_exception_info(exc, pages, cmdhist, qobjects):
traceback.print_exc() traceback.print_exc()
print("\n---- Config ----", file=sys.stderr) print("\n---- Config ----", file=sys.stderr)
try: try:
# FIXME:conf print(config.instance.dump_userconfig(), file=sys.stderr)
conf = objreg.get('config')
print(conf.dump_userconfig(), file=sys.stderr)
except Exception: except Exception:
traceback.print_exc() traceback.print_exc()
print("\n---- Commandline args ----", file=sys.stderr) print("\n---- Commandline args ----", file=sys.stderr)