Merge lp:~vauxoo/openerp-mexico-localization/7.0_l10n_mx_fix_sheme_xsd_dev_carlos2 into lp:openerp-mexico-localization/7.0

Proposed by Juan Carlos Hernandez
Status: Merged
Merged at revision: 300
Proposed branch: lp:~vauxoo/openerp-mexico-localization/7.0_l10n_mx_fix_sheme_xsd_dev_carlos2
Merge into: lp:openerp-mexico-localization/7.0
Diff against target: 17 lines (+2/-2)
1 file modified
l10n_mx_facturae_lib/facturae_lib.py (+2/-2)
To merge this branch: bzr merge lp:~vauxoo/openerp-mexico-localization/7.0_l10n_mx_fix_sheme_xsd_dev_carlos2
Reviewer Review Type Date Requested Status
Isaac López Zúñiga Pending
Moisés López - http://www.vauxoo.com Pending
Review via email: mp+187632@code.launchpad.net

Description of the change

Se arreglo cambio de libreria xmlstarlet_win para windows

To post a comment you must log in.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'l10n_mx_facturae_lib/facturae_lib.py'
2--- l10n_mx_facturae_lib/facturae_lib.py 2013-09-25 00:32:44 +0000
3+++ l10n_mx_facturae_lib/facturae_lib.py 2013-09-26 00:12:33 +0000
4@@ -52,11 +52,11 @@
5 if os.name == "nt":
6 app_xsltproc = 'xsltproc.exe'
7 app_openssl = 'openssl.exe'
8- app_xmlstarlet = 'xml.exe'
9+ app_xmlstarlet = 'xmlstarlet.exe'
10 else:
11 app_xsltproc = 'xsltproc'
12 app_openssl = 'openssl'
13- app_xmlstarlet = 'xml'
14+ app_xmlstarlet = 'xmlstarlet'
15
16 app_openssl_fullpath = os.path.join(openssl_path, app_openssl)
17 if not os.path.isfile(app_openssl_fullpath):