Skip to content

Commit

Permalink
Remove debug print statements that got added last check-in
Browse files Browse the repository at this point in the history
  • Loading branch information
pvcraven committed Aug 23, 2018
1 parent a9dc6ce commit 6ba55bc
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions arcade/sound.py
Expand Up @@ -89,7 +89,6 @@ def _load_sound_library():
try:
import platform
mysys = platform.architecture()
print(mysys)
post = "avbin"
if mysys[0] == '32bit':
post = "/../Win32/avbin"
Expand All @@ -98,7 +97,6 @@ def _load_sound_library():

import os
dir_path = os.path.dirname(os.path.realpath(__file__)) + post
print(dir_path)
pyglet.lib.load_library(dir_path)
pyglet.have_avbin = True
except ImportError:
Expand Down

0 comments on commit 6ba55bc

Please sign in to comment.