/usr/games/london-client is in londonlaw 0.2.1-18.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | #!/usr/bin/python
# London Law -- a networked manhunting board game
# Copyright (C) 2003-2004 Paul Pelzl
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License, Version 2, as
# published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
try:
import londonlaw.guiclient
except:
print "London Law does not appear to be installed."
print "Attempting to launch client from current directory..."
import sys, os.path
# add the parent directory to PYTHONPATH
cwd = os.path.split(os.path.abspath(os.getcwd()))
sys.path.append(cwd[0])
import londonlaw.guiclient
# arch-tag: DO_NOT_CHANGE_ae96d37e-3e12-47d3-aa18-9dd42b1e12f3
|