Fixed a SyntaxError

This commit is contained in:
Manuel Cortez 2017-03-26 01:14:02 +00:00
parent 8da4180509
commit f5aa2cc872
2 changed files with 4 additions and 4 deletions

View File

@ -739,8 +739,8 @@ class fileBrowser(Listbox):
# If there are no files or directories, let's say "empty"
# This will avoid the program to crash and will look nicer.
if len(folders) == 0:
folders.append(("collapse", _("empty")))
if len(folders)
folders.append(("collapse", "empty"))
return folders

View File

@ -6,7 +6,7 @@ def read(fname):
setup(
name = "guicurses",
version = "0.5.1",
version = "0.5.2",
author = "Manuel Cortez",
author_email = "manuel@manuelcortez.net",
description = "A set of utilities for building accessible applications with curses",
@ -15,4 +15,4 @@ setup(
url = "https://github.com/raspberrypi-accesible/guicurses",
long_description=read('README.md'),
packages = ["guicurses"],
)
)