no need to escape $ in python :-D

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@20415 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
José Matox 2007-09-21 13:52:52 +00:00
parent 14e833e990
commit 3fb603e66d

View File

@ -126,11 +126,11 @@ if __name__ == "__main__":
print """<?php
// The current version
\$lyx_version = "%s";
$lyx_version = "%s";
// The branch tag
\$branch_tag = "%s";
$branch_tag = "%s";
// The data itself
\$podata = array (%s
$podata = array (%s
)?>
""" % (lyx_version, branch_tag, ",".join([run_msgfmt(po) for po in sys.argv[1:]]))