wesnoth_addon_manager: Make the portmap tuple more easily diffable

This commit is contained in:
Ignacio R. Morelle 2014-02-20 22:36:50 -03:00
parent 8918b974f1
commit 46b278579b

View file

@ -10,7 +10,15 @@ import wesnoth.wmlparser as wmlparser
dumpi = 0
class CampaignClient:
# First port listed will be used as default.
portmap = (("15006", "1.11.x"), ("15002", "1.10.x"), ("15002", "1.9.x"), ("15004", "trunk"), ("15001", "1.8.x"), ("15003", "1.6.x"), ("15005", "1.4.x"))
portmap = (
("15006", "1.11.x"),
("15002", "1.10.x"),
("15002", "1.9.x"),
("15004", "trunk"),
("15001", "1.8.x"),
("15003", "1.6.x"),
("15005", "1.4.x"),
)
def __init__(self, address = None, quiet=False):
"""