Browse Source

Remove debug prints

tags/1.9.4
falkTX 11 years ago
parent
commit
4059bbc1ce
2 changed files with 0 additions and 5 deletions
  1. +0
    -4
      source/carla_style.py
  2. +0
    -1
      source/externalui.py

+ 0
- 4
source/carla_style.py View File

@@ -37,9 +37,6 @@ else:


from carla_shared import * from carla_shared import *


# Make sure resources are good
# import resources_rc

# ------------------------------------------------------------------------------------------------------------ # ------------------------------------------------------------------------------------------------------------


class CarlaApplication(object): class CarlaApplication(object):
@@ -66,7 +63,6 @@ class CarlaApplication(object):
stylesDir = os.path.abspath(os.path.join(CWD, "..", "bin")) stylesDir = os.path.abspath(os.path.join(CWD, "..", "bin"))


if stylesDir: if stylesDir:
print("TEST : ", stylesDir, " : ", CWD)
QApplication.addLibraryPath(stylesDir) QApplication.addLibraryPath(stylesDir)


elif not config_UseQt5: elif not config_UseQt5:


+ 0
- 1
source/externalui.py View File

@@ -35,7 +35,6 @@ class ExternalUI(object):
self.fQuitReceived = False self.fQuitReceived = False


if len(argv) > 1: if len(argv) > 1:
print(argv)
self.fSampleRate = float(argv[1]) self.fSampleRate = float(argv[1])
self.fUiName = argv[2] self.fUiName = argv[2]
self.fPipeRecvFd = int(argv[3]) self.fPipeRecvFd = int(argv[3])


Loading…
Cancel
Save