From 8a9528c8e5b25f58da98f17193be125909b4f16a Mon Sep 17 00:00:00 2001
From: Marko Petric <marko.petric@cern.ch>
Date: Thu, 18 Jul 2019 15:06:54 +0200
Subject: [PATCH] Converts octal literals into the new syntax

---
 DDG4/examples/CLICSidSimuLCIO.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/DDG4/examples/CLICSidSimuLCIO.py b/DDG4/examples/CLICSidSimuLCIO.py
index d9707de06..bde04bdac 100644
--- a/DDG4/examples/CLICSidSimuLCIO.py
+++ b/DDG4/examples/CLICSidSimuLCIO.py
@@ -44,7 +44,7 @@ def run():
   kernel.registerGlobalAction(evt2)
 
   evt1 = DDG4.EventAction(kernel,'Geant4TestEventAction/UserEvent_1')
-  evt1.Property_int=01234
+  evt1.Property_int=0o1234
   evt1.Property_double=1e11
   evt1.Property_string='Hello_1'
   evt1.enableUI()
-- 
GitLab