Hi all,

I'm in the process of doing my first translation of pypy-c, and have encountered a problem in running the translation. The issue is that Subversion automatically replaces the string $LastChanged$ with a date, and in Hebrew locales that date includes an apostrophe, while the string in the code is also delimited with apostrophes. The attached patch solves this by delimiting with quotation marks instead.

Yours,
Yosef.
Index: py/__init__.py
===================================================================
--- py/__init__.py	(revision 64398)
+++ py/__init__.py	(working copy)
@@ -26,7 +26,7 @@
 initpkg(__name__,
     description = "pylib and py.test: agile development and test support library",
     revision = int('$LastChangedRevision$'.split(':')[1][:-1]),
-    lastchangedate = '$LastChangedDate$',
+    lastchangedate = "$LastChangedDate$",
     version = version, 
     url = "http://pylib.org";, 
     download_url = "http://codespeak.net/py/%s/download.html"; % version,
_______________________________________________
[email protected]
http://codespeak.net/mailman/listinfo/pypy-dev

Reply via email to