Skip to content

Commit 7e0f052

Browse files
authored
fix: add missing semicolon (#39)
Fixes authorprefs and upgrade cryptography to latest to fix CI
1 parent e4b0cd5 commit 7e0f052

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

efiction/eFiction_table_defs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
`contact` tinyint(1) NOT NULL DEFAULT '0',
4040
`stories` int(11) NOT NULL DEFAULT '0',
4141
PRIMARY KEY (`uid`)
42-
) ENGINE = MyISAM""",
42+
) ENGINE = MyISAM;""",
4343
"authors": """CREATE TABLE `{0}` (
4444
`uid` int(11) NOT NULL AUTO_INCREMENT,
4545
`penname` varchar(200) NOT NULL DEFAULT '',

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ colorama==0.4.4
55
colorlog==4.2.1
66
configparser==5.0.0
77
coverage==5.3
8-
cryptography==3.2.1
8+
cryptography==42.0.5
99
importlib-metadata==2.0.0
1010
iniconfig==1.0.1
1111
more-itertools==8.5.0

0 commit comments

Comments
 (0)