From 41607adaf183c6e5ccee231a7268b79f44ea2667 Mon Sep 17 00:00:00 2001
From: gpotter2 <gabriel@potter.fr>
Date: Wed, 28 Jun 2017 14:44:32 +0200
Subject: [PATCH] Remove debug prints

---
 scapy/contrib/gsm_um.py | 2 --
 1 file changed, 2 deletions(-)

diff --git a/scapy/contrib/gsm_um.py b/scapy/contrib/gsm_um.py
index a5bd55d8..99907546 100644
--- a/scapy/contrib/gsm_um.py
+++ b/scapy/contrib/gsm_um.py
@@ -2933,7 +2933,6 @@ class MobileIdHdr(Packet):
             p = p[:1] + struct.pack(">B", res[1]) + p[2:]
         if res[0] != 0:
             p = p[:-res[0]]
-        print(repr(p))
         return p + pay
 
 
@@ -5952,7 +5951,6 @@ class BearerCapabilityHdr(Packet):
         if len(p) is 5:
             p = p[:-2]
         if self.lengthBC is None:
-            print("len von a %s" % (len(p),))
             p = p[:1] + struct.pack(">B", len(p)-3) + p[2:]
         return p + pay
 
-- 
GitLab