diff --git a/python/xdccq.py b/python/xdccq.py index 13aa270f..d139e22c 100644 --- a/python/xdccq.py +++ b/python/xdccq.py @@ -1,8 +1,6 @@ -# coding=UTF-8 - SCRIPT_NAME = "xdccq" SCRIPT_AUTHOR = "Randall Flagg " -SCRIPT_VERSION = "0.1.1" +SCRIPT_VERSION = "0.1.2" SCRIPT_LICENSE = "GPL3" SCRIPT_DESC = "Queue Xdcc messages to bots" @@ -119,7 +117,7 @@ def numToList(string): step = int(nx[1]) if low > high: raise ValueError("number") - ret += range(low, high, step) + ret += list(range(low, high, step)) except ValueError: raise ValueError("number") else: