Lets not mark utility modules as executable

git-svn-id: https://warzone2100.svn.sourceforge.net/svnroot/warzone2100/trunk@7276 4a71c877-e1ca-e34f-864e-861f7616d084
master
Giel van Schijndel 2009-05-02 23:59:57 +00:00 committed by Git SVN Gateway
parent 7297008ed5
commit 9943cf6b01
3 changed files with 1 additions and 3 deletions

0
tools/masterserver/game.py Executable file → Normal file
View File

0
tools/masterserver/protocol.py Executable file → Normal file
View File

View File

@ -267,9 +267,7 @@ if __name__ == '__main__':
logging.info("Starting Warzone 2100 lobby server on port %d" % (protocol.lobbyPort)) logging.info("Starting Warzone 2100 lobby server on port %d" % (protocol.lobbyPort))
# Read in the Message of the Day, max is 1 line, 255 chars # Read in the Message of the Day, max is 1 line, 255 chars
in_file = open("motd.txt", "r") MOTDstring = "The message of the day!!!"
MOTDstring = in_file.read()
in_file.close()
logging.info("The MOTD is (%s)" % MOTDstring[0:255]) logging.info("The MOTD is (%s)" % MOTDstring[0:255])