home · contact · privacy
Fix typo in comment.
[plomrogue] / roguelike-server
index fd3edbde27f09f9483e6f43772d56b24980272b3..8cd8162bd63e28954354e1d13f0d01fc5a4b09ce 100755 (executable)
@@ -33,8 +33,7 @@ def prep_library():
     """Prepare ctypes library at ./libplomrogue.so"""
     libpath = ("./libplomrogue.so")
     if not os.access(libpath, os.F_OK):
-        raise SystemExit("No library " + libpath +
-                         ", run ./compile-server.sh first?")
+        raise SystemExit("No library " + libpath + ", run ./redo first?")
     libpr = ctypes.cdll.LoadLibrary(libpath)
     libpr.seed_rrand.restype = ctypes.c_uint32
     return libpr