Skip to content
Snippets Groups Projects
Commit 25961e0e authored by Yann Leboulanger's avatar Yann Leboulanger
Browse files

fix traceback when we don't use a profile

parent 6a2d835e
No related branches found
No related tags found
No related merge requests found
......@@ -144,7 +144,8 @@ def parseOpts():
import locale
profile, config_path = parseOpts()
config_path = unicode(config_path, locale.getpreferredencoding())
if config_path:
config_path = unicode(config_path, locale.getpreferredencoding())
del parseOpts
profile = unicode(profile, locale.getpreferredencoding())
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment