Mon, 07 Apr 2014 18:46:02 +0200
Changed the template properties dialog to use a monospaced font in the template edit.
(grafted from b3d64a5d310072d7a15918ded4baeac1cb212a0d)
# -*- coding: utf-8 -*- # Copyright (c) 2011 - 2014 Detlev Offenbach <detlev@die-offenbachs.de> # """ Module to check for the presence of PySide by importing it. """ import sys if __name__ == "__main__": try: import PySide # __IGNORE_EXCEPTION__ __IGNORE_WARNING__ ret = 0 except ImportError: ret = 1 sys.exit(ret) # # eflag: FileType = Python2