0

overviewer: use print_function

PYTHON 3 SOON POGGERS
This commit is contained in:
Nicolas F
2019-03-14 16:03:35 +01:00
parent daa25d80fd
commit d6ed0bd416

View File

@@ -15,6 +15,8 @@
# You should have received a copy of the GNU General Public License along # You should have received a copy of the GNU General Public License along
# with the Overviewer. If not, see <http://www.gnu.org/licenses/>. # with the Overviewer. If not, see <http://www.gnu.org/licenses/>.
from __future__ import print_function
import platform import platform
import sys import sys
@@ -588,7 +590,7 @@ def main():
def list_worlds(): def list_worlds():
"Prints out a brief summary of saves found in the default directory" "Prints out a brief summary of saves found in the default directory"
print print()
worlds = world.get_worlds() worlds = world.get_worlds()
if not worlds: if not worlds:
print('No world saves found in the usual place.') print('No world saves found in the usual place.')
@@ -623,7 +625,7 @@ def list_worlds():
print(formatString % (name, playstamp, timestamp, path)) print(formatString % (name, playstamp, timestamp, path))
found_corrupt = any([x.get("IsCorrupt") for x in worlds.values()]) found_corrupt = any([x.get("IsCorrupt") for x in worlds.values()])
if found_corrupt: if found_corrupt:
print("") print()
print("An error has been detected in one or more of your worlds (see the above table).") print("An error has been detected in one or more of your worlds (see the above table).")
print("This is usually due to a corrupt level.dat file. Corrupt worlds need to be " print("This is usually due to a corrupt level.dat file. Corrupt worlds need to be "
"repaired before Overviewer can render them.") "repaired before Overviewer can render them.")