commit/unicodeBrailleInput: norrumar: updated files from addon template.

  • From: commits-noreply@xxxxxxxxxxxxx
  • To: nvda-addons-commits@xxxxxxxxxxxxx
  • Date: Thu, 31 Oct 2013 09:50:09 -0000

1 new commit in unicodeBrailleInput:

https://bitbucket.org/nvdaaddonteam/unicodebrailleinput/commits/7b77d7cc1609/
Changeset:   7b77d7cc1609
Branch:      master
User:        norrumar
Date:        2013-10-31 10:49:46
Summary:     updated files from addon template.

Affected #:  2 files

diff --git a/docHandler.py b/docHandler.py
index c142e42..b514fe4 100644
--- a/docHandler.py
+++ b/docHandler.py
@@ -12,7 +12,7 @@ import wx
 
 addonHandler.initTranslation()
 
-_addonDir = os.path.join(os.path.dirname(__file__), "..") # The root of an 
addon folder
+_addonDir = os.path.join(os.path.dirname(__file__), "..").decode("mbcs") # The 
root of an addon folder
 _docFileName = "readme.html" # The name of an addon documentation file
 _curAddon = addonHandler.Addon(_addonDir) # Addon instance
 _addonSummary = _curAddon.manifest['summary']

diff --git a/sconstruct b/sconstruct
index 9754cf5..1d54d6e 100644
--- a/sconstruct
+++ b/sconstruct
@@ -109,9 +109,9 @@ def createAddonHelp(dir):
                cssPath = os.path.join(docsDir, "style.css")
                cssTarget = env.Command(cssPath, "style.css", Copy("$TARGET", 
"$SOURCE"))
                env.Depends(addon, cssTarget)
-       if os.path.isfile("README.md"):
-               readmePath = os.path.join(docsDir, "en", "README.md")
-               readmeTarget = env.Command(readmePath, "README.md", 
Copy("$TARGET", "$SOURCE"))
+       if os.path.isfile("readme.md"):
+               readmePath = os.path.join(docsDir, "en", "readme.md")
+               readmeTarget = env.Command(readmePath, "readme.md", 
Copy("$TARGET", "$SOURCE"))
                env.Depends(addon, readmeTarget)

Repository URL: https://bitbucket.org/nvdaaddonteam/unicodebrailleinput/

--

This is a commit notification from bitbucket.org. You are receiving
this because you have the service enabled, addressing the recipient of
this email.

Other related posts:

  • » commit/unicodeBrailleInput: norrumar: updated files from addon template. - commits-noreply