This is merely a historical archive of years 2008-2021, before the migration to mailman3.
A maintained and still updated list archive can be found at https://lists.osmocom.org/hyperkitty/list/gerrit-log@lists.osmocom.org/.
Pau Espin Pedrol gerrit-no-reply at lists.osmocom.orgHello Max,
I'd like you to reexamine a change. Please visit
https://gerrit.osmocom.org/5621
to look at the new patch set (#2).
pySim-*.py: Set shebang to use python v2
Nowadays bin/python usually points to python3, and this script is written
in python2, which means if run directly from terminal it will fail with
some print syntax errors.
Change-Id: I6ab4e9edc44a8045915d4828c6de2fa98027fb7e
---
M pySim-prog.py
M pySim-read.py
2 files changed, 2 insertions(+), 2 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/pysim refs/changes/21/5621/2
diff --git a/pySim-prog.py b/pySim-prog.py
index 14874cd..d3a29c7 100755
--- a/pySim-prog.py
+++ b/pySim-prog.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python2
#
# Utility to deal with sim cards and program the 'magic' ones easily
diff --git a/pySim-read.py b/pySim-read.py
index 2c10866..5ca39ee 100755
--- a/pySim-read.py
+++ b/pySim-read.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python2
#
# Utility to display some informations about a SIM card
--
To view, visit https://gerrit.osmocom.org/5621
To unsubscribe, visit https://gerrit.osmocom.org/settings
Gerrit-MessageType: newpatchset
Gerrit-Change-Id: I6ab4e9edc44a8045915d4828c6de2fa98027fb7e
Gerrit-PatchSet: 2
Gerrit-Project: pysim
Gerrit-Branch: master
Gerrit-Owner: Pau Espin Pedrol <pespin at sysmocom.de>
Gerrit-Reviewer: Max <msuraev at sysmocom.de>