Commit 82e21f28 authored by Arturo Martín Romero's avatar Arturo Martín Romero :thinking:
Browse files

Corregimos las llamadas a python por python3

No related merge requests found
Pipeline #2427 passed with stages
in 13 seconds
Showing with 9 additions and 2 deletions
+9 -2
vx-dga-l-printers-codusers (3.0-4) unstable; urgency=low
* Ficheros: /usr/bin/vx-imprimir-con-usercode-info /usr/share/vitalinux/printers-tea4cups/dialogo2.sh
* - Corregimos las llamadas a python por python3
-- Arturo Martin Romero <amartinromero@gmail.com> Tue, 6 Jun 2023 10:20:00 +0200
vx-dga-l-printers-codusers (3.0-3) unstable; urgency=low
* Fichero: /debian/postinst
......
......@@ -28,7 +28,7 @@ if test "${USUARIO}" = "root"; then
# Auditoria de Impresión:
TEATITLE="$(python -c "import sys, urllib as ul; print ul.quote_plus(sys.argv[1])" "${TEATITLE}")"
TEATITLE="$(python3 -c "import sys, urllib as ul; print ul.quote_plus(sys.argv[1])" "${TEATITLE}")"
CID="$(migasfree-cid)"
FECHA="$(date +"%Y-%m-%d - %T")"
SIZE="$(expr ${TEAJOBSIZE} / 1024)"
......
#!/bin/bash
. /etc/default/vx-dga-variables/vx-dga-variables-general.conf
TEATITLE="$(python -c "import sys, urllib as ul; print ul.quote_plus(sys.argv[1])" "${TEATITLE}")"
TEATITLE="$(python3 -c "import sys, urllib as ul; print ul.quote_plus(sys.argv[1])" "${TEATITLE}")"
CID="$(migasfree-cid)"
FECHA="$(date +"%Y-%m-%d - %T")"
SIZE="$(expr ${TEAJOBSIZE} / 1024)"
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment