Omnibus commited on
Commit
8cd8b93
·
verified ·
1 Parent(s): 0ba93be

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -3,8 +3,9 @@ def hide_message(reg,sec):
3
  out = reg + " " + ''.join(chr(0xE0000 + ord(ch)) for ch in sec)
4
  for ea in out:
5
  print([ea])
6
- if ea.startswith(r"\U000e"):
7
- new_ea = ea.split(r"\U000e")[1]
 
8
  print(new_ea)
9
  print (len(out))
10
  print (out)
 
3
  out = reg + " " + ''.join(chr(0xE0000 + ord(ch)) for ch in sec)
4
  for ea in out:
5
  print([ea])
6
+ str_ea=str([ea][0])
7
+ if str_ea.startswith(r"\U000e"):
8
+ new_ea = str_ea.split(r"\U000e")[1]
9
  print(new_ea)
10
  print (len(out))
11
  print (out)