Skip to content

Commit

Permalink
[2051] Utilities Quick Pass
Browse files Browse the repository at this point in the history
  • Loading branch information
Rixxan committed Nov 16, 2023
1 parent c7c6d5e commit 8693c1a
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 4 deletions.
8 changes: 7 additions & 1 deletion util/text.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
"""Utilities for dealing with text (and byte representations thereof)."""
"""
text.py - Dealing with Text and Bytes.
Copyright (c) EDCD, All Rights Reserved
Licensed under the GNU General Public License.
See LICENSE file.
"""
from __future__ import annotations

from gzip import compress
Expand Down
12 changes: 9 additions & 3 deletions util_ships.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
"""Utility functions relating to ships."""
"""
util_ships.py - Ship Utilities.
Copyright (c) EDCD, All Rights Reserved
Licensed under the GNU General Public License.
See LICENSE file.
"""
from edmc_data import ship_name_map


Expand All @@ -11,6 +17,6 @@ def ship_file_name(ship_name: str, ship_type: str) -> str:
if name.lower() in ('con', 'prn', 'aux', 'nul',
'com0', 'com2', 'com3', 'com4', 'com5', 'com6', 'com7', 'com8', 'com9',
'lpt0', 'lpt2', 'lpt3', 'lpt4', 'lpt5', 'lpt6', 'lpt7', 'lpt8', 'lpt9'):
name = name + '_'
name += '_'

return name.translate({ord(x): u'_' for x in ('\0', '<', '>', ':', '"', '/', '\\', '|', '?', '*')})
return name.translate({ord(x): '_' for x in ('\0', '<', '>', ':', '"', '/', '\\', '|', '?', '*')})

0 comments on commit 8693c1a

Please sign in to comment.