Made error message for Raspberry Pi users less serious-sounding
This commit is contained in:
parent
bbb8c645af
commit
ba27f6e8a6
|
@ -20,6 +20,8 @@ import socket
|
|||
import ctypes
|
||||
from struct import pack
|
||||
import sys
|
||||
from subprocess import call
|
||||
import time
|
||||
|
||||
from SimpleXMLRPCServer import SimpleXMLRPCServer
|
||||
from api import MySimpleXMLRPCRequestHandler
|
||||
|
@ -30,16 +32,12 @@ from helper_sql import sqlQuery
|
|||
import threading
|
||||
|
||||
# Classes
|
||||
#from helper_sql import *
|
||||
#from class_sqlThread import *
|
||||
from class_sqlThread import sqlThread
|
||||
from class_singleCleaner import singleCleaner
|
||||
#from class_singleWorker import *
|
||||
from class_objectProcessor import objectProcessor
|
||||
from class_outgoingSynSender import outgoingSynSender
|
||||
from class_singleListener import singleListener
|
||||
from class_singleWorker import singleWorker
|
||||
#from class_addressGenerator import *
|
||||
from class_addressGenerator import addressGenerator
|
||||
from debug import logger
|
||||
|
||||
|
@ -47,9 +45,6 @@ from debug import logger
|
|||
import helper_bootstrap
|
||||
import helper_generic
|
||||
|
||||
from subprocess import call
|
||||
import time
|
||||
|
||||
|
||||
def connectToStream(streamNumber):
|
||||
shared.streamsInWhichIAmParticipating[streamNumber] = 'no data'
|
||||
|
|
|
@ -145,5 +145,5 @@ def isOurOperatingSystemLimitedToHavingVeryFewHalfOpenConnections():
|
|||
return StrictVersion("5.1.2600")<=VER_THIS and StrictVersion("6.0.6000")>=VER_THIS
|
||||
return False
|
||||
except Exception as err:
|
||||
print 'An Exception occurred within isOurOperatingSystemLimitedToHavingVeryFewHalfOpenConnections:', err
|
||||
print "Info: we could not tell whether your OS is limited to having very view half open connections because we couldn't interpret the platform version. Don't worry; we'll assume that it is not limited. This tends to occur on Raspberry Pis. :", err
|
||||
return False
|
||||
|
|
Loading…
Reference in New Issue
Block a user