New build

This commit is contained in:
2016-05-25 14:52:55 -05:00
parent 35c85b1c86
commit d745eb85c5
6 changed files with 15 additions and 15 deletions

View File

@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
name = "Socializer"
version = "0.12"
version = "0.13"
author = u"Manuel Cortéz"
authorEmail = "manuel@manuelcortez.net"
copyright = u"Copyright (C) 2016, Manuel cortéz."

View File

@@ -57,16 +57,16 @@ def get_documentation ():
depth -= 1
return answer
def get_sounds(): return []
# answer = []
# depth = 6
# for root, dirs, files in os.walk('sounds'):
# if depth == 0:
# break
# new = (root, glob(os.path.join(root, "*.ogg")))
# answer.append(new)
# depth -= 1
# return answer
def get_sounds():
answer = []
depth = 6
for root, dirs, files in os.walk('sounds'):
if depth == 0:
break
new = (root, glob(os.path.join(root, "*.ogg")))
answer.append(new)
depth -= 1
return answer
def get_locales():
answer = []