summaryrefslogtreecommitdiffstats
path: root/NohGooee/parseargs.py
diff options
context:
space:
mode:
Diffstat (limited to 'NohGooee/parseargs.py')
-rw-r--r--NohGooee/parseargs.py7
1 files changed, 1 insertions, 6 deletions
diff --git a/NohGooee/parseargs.py b/NohGooee/parseargs.py
index e2f773a..663a000 100644
--- a/NohGooee/parseargs.py
+++ b/NohGooee/parseargs.py
@@ -16,7 +16,6 @@ from cStringIO import StringIO
from NohGooee.defaultargs import MyBool, MYTRUE
from NohGooee import BTFailure
from NohGooee.bencode import bdecode
-from NohGooee.platform import is_frozen_exe
def makeHelp(uiname, defaults):
ret = ''
@@ -36,11 +35,7 @@ def makeHelp(uiname, defaults):
return ret
def printHelp(uiname, defaults):
- if uiname in ('bittorrent','maketorrent') and is_frozen_exe:
- from NohGooee.GUI import HelpWindow
- HelpWindow(None, makeHelp(uiname, defaults))
- else:
- print makeHelp(uiname, defaults)
+ print makeHelp(uiname, defaults)
def formatDefinitions(options, COLS):
s = StringIO()