[App] remove check for Python 2

This commit is contained in:
Uwe
2022-07-23 15:10:45 +02:00
parent 2b6f351880
commit 1f0181cdcc

View File

@@ -311,12 +311,6 @@ except ImportError:
FreeCAD.Console.PrintError("\n\nSeems the python standard libs are not installed, bailing out!\n\n")
raise
# Backward compatibility to Py2
import sys
if sys.version_info.major < 3:
import time
time.process_time = time.clock
class FCADLogger(object):
'''Convenient class for tagged logging.