Removed matchesGcode again since it's not needed anymore

master
Gina Häußge 2013-06-29 19:09:55 +02:00
parent a9c35e5cf9
commit 9607de7d17
1 changed files with 0 additions and 3 deletions

View File

@ -61,9 +61,6 @@ def getExceptionString():
return "%s: '%s' @ %s:%s:%d" % (str(sys.exc_info()[0].__name__), str(sys.exc_info()[1]), os.path.basename(locationInfo[0]), locationInfo[2], locationInfo[1])
def matchesGcode(line, gcode):
return re.search("^%s(\D|$)" % gcode.strip(), line, re.I)
def getGitInfo():
gitPath = os.path.abspath(os.path.join(os.path.split(os.path.abspath(__file__))[0], "../../.git"))
if not os.path.exists(gitPath):