- Fixed typo in path for fallback location of the config file if one is not

provided
This commit is contained in:
Scott Kitterman
2018-03-12 22:03:45 -04:00
parent e3005aa723
commit 8a0e1bdd97
2 changed files with 3 additions and 1 deletions
+2
View File
@@ -1,6 +1,8 @@
0.9.6 UNRELEASED 0.9.6 UNRELEASED
- Fixed typo in package installation section of README - Fixed typo in package installation section of README
- Added more to README about first run with systemd - Added more to README about first run with systemd
- Fixed typo in path for fallback location of the config file if one is not
provided
0.9.5.1 2018-03-10 0.9.5.1 2018-03-10
- Add conf file location to systemd unit file - Add conf file location to systemd unit file
+1 -1
View File
@@ -324,7 +324,7 @@ def main():
global privateEd25519 global privateEd25519
privateRSA = False privateRSA = False
privateEd25519 = False privateEd25519 = False
configFile = '/usr/loca/etc/dkimpy-milter.conf' configFile = '/usr/local/etc/dkimpy-milter.conf'
if len(sys.argv) > 1: if len(sys.argv) > 1:
if sys.argv[1] in ('-?', '--help', '-h'): if sys.argv[1] in ('-?', '--help', '-h'):
print('usage: dkimpy-milter [<configfilename>]') print('usage: dkimpy-milter [<configfilename>]')