Skip to content

Commit ae61797

Browse files
committed
Fix
1 parent 7c242f6 commit ae61797

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

caltechdata_api/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def generate_key():
3535

3636
# Load the key from a file or generate a new one if not present
3737
def load_or_generate_key():
38-
key_file = os.path.join(caltechdata_directory, key_file)
38+
key_file = os.path.join(caltechdata_directory, "key.key")
3939
if os.path.exists(key_file):
4040
with open(key_file, "rb") as f:
4141
return f.read()

0 commit comments

Comments
 (0)