Browse Source

Small bugfix

Yann Weber 6 years ago
parent
commit
f1e0a6e4ea
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      htmlsteg.py

+ 1
- 1
htmlsteg.py View File

@@ -48,7 +48,7 @@ if __name__ == '__main__':
48 48
         else:
49 49
             fdout = open(args.output, 'w+')
50 50
         if args.input == '-':
51
-            data_in = bytearray(sys.stdin.read())
51
+            data_in = sys.stdin.read()
52 52
         else:
53 53
             with open(args.input, 'r') as fdin:
54 54
                 data_in = fdin.read()

Loading…
Cancel
Save