From 7820f985682947da3bc2cc427c5193fe9a56acdb Mon Sep 17 00:00:00 2001 From: mathieui Date: Thu, 15 Aug 2013 01:07:47 +0200 Subject: [PATCH] Move shlex to poezio_shlex to avoid conflicts with the stdlib --- src/common.py | 2 +- src/{shlex.py => poezio_shlex.py} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename src/{shlex.py => poezio_shlex.py} (100%) diff --git a/src/common.py b/src/common.py index c438270f..88c3d0ea 100644 --- a/src/common.py +++ b/src/common.py @@ -18,7 +18,7 @@ import hashlib import subprocess import time import string -import shlex +import poezio_shlex as shlex ROOM_STATE_NONE = 11 ROOM_STATE_CURRENT = 10 diff --git a/src/shlex.py b/src/poezio_shlex.py similarity index 100% rename from src/shlex.py rename to src/poezio_shlex.py