Skip to content

Commit fc5cce6

Browse files
committed
updated bitmessagemain.spec
1 parent 369bc57 commit fc5cce6

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

packages/pyinstaller/bitmessagemain.spec

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ a.datas += [
7474

7575
# append the translations directory
7676
a.datas += addTranslations()
77-
77+
a.datas += [('default.ini', os.path.join(srcPath, 'default.ini'), 'DATA')]
7878

7979
excluded_binaries = [
8080
'QtOpenGL4.dll',
@@ -95,8 +95,6 @@ a.binaries += [
9595
os.path.join(srcPath, 'sslkeys', 'cert.pem'), 'BINARY'),
9696
(os.path.join('sslkeys', 'key.pem'),
9797
os.path.join(srcPath, 'sslkeys', 'key.pem'), 'BINARY'),
98-
(os.path.join('src', 'default.ini'),
99-
os.path.join('src', 'default.ini'), 'DATA'),
10098
]
10199

102100

src/tests/test_config.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,6 @@ def test_reset(self):
101101
config._reset()
102102
self.assertEqual(config.sections(), [])
103103

104-
105104
def test_defaults(self):
106105
"""Loading defaults"""
107106
config = BMConfigParser()

0 commit comments

Comments
 (0)