Skip to content
This repository has been archived by the owner on Oct 26, 2023. It is now read-only.

Commit

Permalink
Merge pull request #144 from psychomario/development
Browse files Browse the repository at this point in the history
Fix stupid bug for release
  • Loading branch information
psychomario authored Dec 26, 2016
2 parents 03652e4 + 04917bb commit 6cc6b51
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion pypxe/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,8 @@ def main():
settings = args.__dict__
del settings['DUMP_CONFIG']
del settings['DUMP_CONFIG_MERGED']
print json.dumps(SETTINGS, sort_keys=True, indent=4)
del settings['JSON_CONFIG']
print json.dumps(settings, sort_keys=True, indent=4)
sys.exit()

if args.JSON_CONFIG: # load from configuration file if specified
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
deps.append('argparse')

setup(name='PyPXE',
version='1.7.1',
version='1.7.2',
description='Pure Python2 PXE (DHCP-(Proxy)/TFTP/HTTP/NBD) Server',
url='https://github.com/psychomario/PyPXE',
license='MIT',
Expand Down

0 comments on commit 6cc6b51

Please sign in to comment.