Skip to content

Commit

Permalink
Remove debug prints
Browse files Browse the repository at this point in the history
  • Loading branch information
Sohail05 committed Apr 19, 2015
1 parent f9b62a1 commit 1e484eb
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions find_glsl.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
with open(filename, 'r') as readfile:
if(readfile.read().find("OpenGL Shading Language Version") != -1):
readfile.close()
print filename
shutil.copy(filename, path+"\\sl4\\"+ ntpath.basename(filename))
print "found :" + filename +" , copied to" + path +"/sl4" + ntpath.basename(filename)

Expand All @@ -30,6 +29,5 @@
with open(filename, 'r') as readfile:
if(readfile.read().find("OpenGL ES Shading Language Version") != -1):
readfile.close()
print filename
shutil.copy(filename, path+"\\el3\\"+ ntpath.basename(filename))
print "found :" + filename +" , copied to" + path +"\\el3\\" + ntpath.basename(filename)
2 changes: 1 addition & 1 deletion glsl.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def generate_versions():

if not command in version_commands_flat[version]:
version_commands_flat[version].append(version_commands[version][command])
print version_commands
commands_version = reverse_version_index(version_commands)
commands_version_flat = reverse_version_index(version_commands_flat)

Expand Down

0 comments on commit 1e484eb

Please sign in to comment.