From d84b39d4b7265d1ce6597023aedf6dca89836eea Mon Sep 17 00:00:00 2001 From: Christian Heller Date: Mon, 18 Feb 2019 02:46:30 +0100 Subject: [PATCH] Fix minor bug. --- new/{client.py => example_client.py} | 0 new/plomrogue/game.py | 1 + new/plomrogue/io.py | 1 + 3 files changed, 2 insertions(+) rename new/{client.py => example_client.py} (100%) diff --git a/new/client.py b/new/example_client.py similarity index 100% rename from new/client.py rename to new/example_client.py diff --git a/new/plomrogue/game.py b/new/plomrogue/game.py index 78ff6bd..0712900 100755 --- a/new/plomrogue/game.py +++ b/new/plomrogue/game.py @@ -20,6 +20,7 @@ class ThingBase: self.position = position + class Thing(ThingBase): def __init__(self, *args, **kwargs): diff --git a/new/plomrogue/io.py b/new/plomrogue/io.py index 163e37b..00f90b1 100644 --- a/new/plomrogue/io.py +++ b/new/plomrogue/io.py @@ -3,6 +3,7 @@ import threading import socketserver from plomrogue.errors import GameError, ArgError, BrokenSocketConnection from plomrogue.parser import Parser +from plomrogue.misc import quote -- 2.30.2