|
@@ -2346,7 +2346,8 @@ class PlanetUpScript(object):
|
|
|
line = line[:7] + ' ' + line[8:]
|
|
|
|
|
|
details, _, citadel = line.partition('Class')
|
|
|
- #log.debug(details) # Is that what we are after?
|
|
|
+ log.info(details) # Is that what we are after?
|
|
|
+ log.info(citadel)
|
|
|
sector, planet_number, name = re.split(r'\s*', details.strip(), 2)
|
|
|
sector = int(sector)
|
|
|
number = int(planet_number.replace('#', ''))
|
|
@@ -2833,7 +2834,8 @@ class ColoScript2(object):
|
|
|
line = line[:7] + ' ' + line[8:]
|
|
|
|
|
|
details, _, citadel = line.partition('Class')
|
|
|
- #log.debug(details) # Is that what we are after?
|
|
|
+ log.info(details) # Is that what we are after?
|
|
|
+ log.info(citadel)
|
|
|
sector, planet_number, name = re.split(r'\s*', details.strip(), 2)
|
|
|
sector = int(sector)
|
|
|
number = int(planet_number.replace('#', ''))
|