Skip to content

Commit 64bc689

Browse files
committedJan 13, 2016
Update Crypto.py
1 parent ff6c2a8 commit 64bc689

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎Crypto.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import glob
22
print("Instructions: Place txt files with text in them in the same folder as Crypto.py, hit enter, watch magic in files")
33
input()
4-
def ascii(txt):
4+
def asci(txt):
55
enter = txt
66
aa = ""
77
c = 0
@@ -21,7 +21,7 @@ def ascii(txt):
2121
f.write(asci(file))
2222
f.close()
2323

24-
for x in glob.glob("asd.py"):
24+
for x in glob.glob("*.py"):
2525
f = open(x)
2626
file = f.read()
2727
f = open(x, "w")

0 commit comments

Comments
 (0)
Please sign in to comment.