In setup.py in svn head, translate.misc.typecheck is not referred-to. So it doesn't get installed when one does 'python setup.py install'.

This patch (attached) against setup.py fixes that problem. (If simple patches like this should get Bugzilla entries, let me know, but otherwise I'll submit them here. By all means tell me what the etiquette is.)

-- Asheesh.

--
Anyone can make an omelet with eggs.  The trick is to make one with none.
diff --git a/setup.py b/setup.py
index ff8cb31..df37db3 100755
--- a/setup.py
+++ b/setup.py
@@ -32,7 +32,7 @@ initfiles = [(join(sitepackages,'translate'),[join('translate','__init__.py')])]
 subpackages = ["convert", "misc", "storage", join("storage", "versioncontrol"), 
         join("storage", "xml_extract"), join("storage", "placeables"),
         "filters", "tools", "services", "search", join("search", "indexing"), 
-        "lang"]
+        "lang", join("misc", "typecheck")]
 # TODO: elementtree doesn't work in sdist, fix this
 packages = ["translate"]
 
-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Translate-pootle mailing list
Translate-pootle@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/translate-pootle

Reply via email to