We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 953f28a commit 4ff806fCopy full SHA for 4ff806f
requirements.txt
@@ -1,6 +1,5 @@
1
PyInstaller
2
-hexdump
3
jstyleson
4
PyQt5
5
-simple_hexdump
6
websocket_client
+https://files.pythonhosted.org/packages/55/b3/279b1d57fa3681725d0db8820405cdcb4e62a9239c205e4ceac4391c78e4/hexdump-3.3.zip
utils.py
@@ -11,8 +11,7 @@ def normalize_path(path):
11
return path.replace("\\", "/").replace("/", os.path.sep)
12
13
def hex_view(data):
14
- if platform.system() == "Windows": return hexdump(data, "return")
15
- else: return repr(hexdump(data))
+ return hexdump(data, "return")
16
17
def get_default_font():
18
if platform.system() == "Windows": return QFont("Courier New", 9)
0 commit comments