mirror of
https://gitea.osmocom.org/sim-card/pysim.git
synced 2026-03-17 02:48:34 +03:00
filesystem: fix typo in method call app()->append()
In the method add_application() the method name should be append() instead of add(). Change-Id: Ic8ad62567968e09786eac86f219b56a3d3200511 Related: OS#4963
This commit is contained in:
@@ -713,7 +713,7 @@ class CardProfile(object):
|
||||
return self.name
|
||||
|
||||
def add_application(self, app):
|
||||
self.applications.add(app)
|
||||
self.applications.append(app)
|
||||
|
||||
def interpret_sw(self, sw):
|
||||
"""Interpret a given status word within the profile. Returns tuple of
|
||||
|
||||
Reference in New Issue
Block a user