Browse Source

Small bugfix

Yann Weber 6 years ago
parent
commit
c56fc383f1
2 changed files with 2 additions and 2 deletions
  1. 1
    1
      htmlsteg.py
  2. 1
    1
      steg.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()

+ 1
- 1
steg.py View File

@@ -7,7 +7,7 @@
7 7
 #        HtmlSteg is free software: you can redistribute it and/or modify
8 8
 #        it under the terms of the GNU General Public License as published by
9 9
 #        the Free Software Foundation, either version 3 of the License, or
10
-#        (at your option) any later version.
10
+#        any later version.
11 11
 #
12 12
 #        HtmlSteg is distributed in the hope that it will be useful,
13 13
 #        but WITHOUT ANY WARRANTY; without even the implied warranty of

Loading…
Cancel
Save