Skip to content

Commit

Permalink
Simplify config dir functions.
Browse files Browse the repository at this point in the history
  • Loading branch information
wummel committed Mar 11, 2014
1 parent 0ad5969 commit 4dc70f5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions linkchecker-gui
Expand Up @@ -20,8 +20,9 @@ Check HTML pages for broken links. This is the GUI client.
"""
import sys
import signal
from linkcheck import configuration, drop_privileges, i18n, main_is_frozen
if main_is_frozen():
from linkcheck import configuration, drop_privileges, i18n
from linkcheck.loader import is_frozen
if is_frozen():
# Let Python find the C++ runtime DLLs for PyQt.
import os
from linkcheck import get_install_data
Expand Down

0 comments on commit 4dc70f5

Please sign in to comment.