Tue, 28 Mar 2017 19:20:24 +0200
Fixed some code style issues.
# -*- coding: utf-8 -*- # Copyright (c) 2013 - 2017 Detlev Offenbach <detlev@die-offenbachs.de> # """ Script to find the cxfreeze directory from running Python interpreter. """ from __future__ import unicode_literals import os import sys for sysPath in sys.path: modpath = os.path.join(sysPath, "cx_Freeze") if os.path.exists(modpath): print(modpath) # __IGNORE_WARNING_M801__ break