Skip to content

Commit f2ebb4b

Browse files
committed
minor change for testing to get quickstart to come up
1 parent b808ec0 commit f2ebb4b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

usr/lib/webapp-manager/webapp-manager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ def __init__(self, application):
217217
self.load_webapps()
218218

219219
# Show quickstart when the user has no apps yet (first run or clean slate)
220-
if len([w for w in self.manager.get_webapps() if w.is_valid]) <= 1:
220+
if len([w for w in self.manager.get_webapps() if w.is_valid]) >= 1: # changed from < for testing
221221
dialog = QuickstartDialog(self.window, self.manager)
222222
dialog.run()
223223
self.load_webapps() # refresh list if apps were just created

0 commit comments

Comments
 (0)