Change indents from tabs to spaces

This commit is contained in:
Et0h 2014-06-19 19:35:51 +01:00
parent 99b5ccda05
commit 9d290d80db
2 changed files with 8 additions and 8 deletions

View File

@ -5,11 +5,11 @@ import site, sys
# libpath
try:
if ((sys.version_info.major != 2) or (sys.version_info.minor < 7)):
raise Exception("You must run Syncplay with Python 2.7!")
if ((sys.version_info.major != 2) or (sys.version_info.minor < 7)):
raise Exception("You must run Syncplay with Python 2.7!")
except AttributeError:
import warnings
warnings.warn("You must run Syncplay with Python 2.7!")
import warnings
warnings.warn("You must run Syncplay with Python 2.7!")
from syncplay.clientManager import SyncplayClientManager
from syncplay.utils import blackholeStdoutForFrozenWindow

View File

@ -6,11 +6,11 @@ import site, sys
# libpath
try:
if ((sys.version_info.major != 2) or (sys.version_info.minor < 7)):
raise Exception("You must run Syncplay with Python 2.7!")
if ((sys.version_info.major != 2) or (sys.version_info.minor < 7)):
raise Exception("You must run Syncplay with Python 2.7!")
except AttributeError:
import warnings
warnings.warn("You must run Syncplay with Python 2.7!")
import warnings
warnings.warn("You must run Syncplay with Python 2.7!")
from twisted.internet import reactor