Fixed a SyntaxError
This commit is contained in:
parent
8da4180509
commit
f5aa2cc872
@ -739,8 +739,8 @@ class fileBrowser(Listbox):
|
|||||||
# If there are no files or directories, let's say "empty"
|
# If there are no files or directories, let's say "empty"
|
||||||
# This will avoid the program to crash and will look nicer.
|
# This will avoid the program to crash and will look nicer.
|
||||||
if len(folders) == 0:
|
if len(folders) == 0:
|
||||||
folders.append(("collapse", _("empty")))
|
folders.append(("collapse", "empty"))
|
||||||
if len(folders)
|
|
||||||
|
|
||||||
return folders
|
return folders
|
||||||
|
|
||||||
|
4
setup.py
4
setup.py
@ -6,7 +6,7 @@ def read(fname):
|
|||||||
|
|
||||||
setup(
|
setup(
|
||||||
name = "guicurses",
|
name = "guicurses",
|
||||||
version = "0.5.1",
|
version = "0.5.2",
|
||||||
author = "Manuel Cortez",
|
author = "Manuel Cortez",
|
||||||
author_email = "manuel@manuelcortez.net",
|
author_email = "manuel@manuelcortez.net",
|
||||||
description = "A set of utilities for building accessible applications with curses",
|
description = "A set of utilities for building accessible applications with curses",
|
||||||
@ -15,4 +15,4 @@ setup(
|
|||||||
url = "https://github.com/raspberrypi-accesible/guicurses",
|
url = "https://github.com/raspberrypi-accesible/guicurses",
|
||||||
long_description=read('README.md'),
|
long_description=read('README.md'),
|
||||||
packages = ["guicurses"],
|
packages = ["guicurses"],
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user