Skip to content

Commit 3f075d2

Browse files
author
Timothee 'TTimo' Besset
committed
fix packaging process
1 parent 49fc291 commit 3f075d2

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

client/devkit_client/gui2/gui2.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,8 @@
4343
import paramiko
4444
import devkit_client.zeroconf as zeroconf
4545

46+
from devkit_client.icon import ICON_FILENAME
47+
4648
CHARACTER_WIDTH = 8
4749
CHARACTER_HEIGHT = 14 # e.g. a line of text
4850

@@ -53,8 +55,6 @@
5355

5456
TOGGLE_DEV_MODE = 'If this is not a network issue, please toggle developer mode off then back on for the device and try again.'
5557

56-
ICON_FILENAME = 'logo-steamdeck-256.tga'
57-
5858
logger = logging.getLogger(__name__)
5959

6060

client/devkit_client/icon.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ICON_FILENAME = 'logo-steamdeck-256.tga'

setup/package-linux.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
# cursed, but delicious
2121
sys.path.append(CLIENT_DIR)
22-
from devkit_client.gui2.gui2 import ICON_FILENAME
22+
from devkit_client.icon import ICON_FILENAME
2323
sys.path.pop()
2424

2525
# don't let python buffering get in the way or readable output

setup/package-windows.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
# cursed, but delicious
2020
sys.path.append(CLIENT_DIR)
2121
from devkit_client import locate_cygwin_tools
22-
from devkit_client.gui2.gui2 import ICON_FILENAME
22+
from devkit_client.icon import ICON_FILENAME
2323
sys.path.pop()
2424

2525
# don't let python buffering get in the way or readable output

0 commit comments

Comments
 (0)