X-Git-Url: https://git.kaliko.me/?p=python-musicpd.git;a=blobdiff_plain;f=musicpd.py;fp=mpd.py;h=864337e711baeb4ffa1cf05841df5c2acd87d3c0;hp=7c7f0168e615eefb914216afa1dfebab1bc4dbd3;hb=e1bde448be82c3cedaadd6fa0f5447d250ecefb2;hpb=82935e106152ee3feebf64be854583ceee4d60e5 diff --git a/mpd.py b/musicpd.py similarity index 98% rename from mpd.py rename to musicpd.py index 7c7f016..864337e 100644 --- a/mpd.py +++ b/musicpd.py @@ -1,19 +1,19 @@ -# python-mpd: Python MPD client library +# python-musicpd: Python MPD client library # Copyright (C) 2008-2010 J. Alexander Treuman -# Copyright (C) 2012 Kaliko Jack +# Copyright (C) 2012-2013 Kaliko Jack # -# python-mpd is free software: you can redistribute it and/or modify +# python-musicpd is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # -# python-mpd is distributed in the hope that it will be useful, +# python-musicpd 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 Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public License -# along with python-mpd. If not, see . +# along with python-musicpd. If not, see . import socket @@ -22,6 +22,7 @@ HELLO_PREFIX = "OK MPD " ERROR_PREFIX = "ACK " SUCCESS = "OK" NEXT = "list_OK" +VERSION = '0.3.1b' class MPDError(Exception):