diff options
Diffstat (limited to 'bitbake-dev/lib/bb/fetch/hg.py')
-rw-r--r-- | bitbake-dev/lib/bb/fetch/hg.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake-dev/lib/bb/fetch/hg.py b/bitbake-dev/lib/bb/fetch/hg.py index 1cd5a8aa5c..b87fd0fbe5 100644 --- a/bitbake-dev/lib/bb/fetch/hg.py +++ b/bitbake-dev/lib/bb/fetch/hg.py | |||
@@ -79,7 +79,7 @@ class Hg(Fetch): | |||
79 | host = "/" | 79 | host = "/" |
80 | ud.host = "localhost" | 80 | ud.host = "localhost" |
81 | 81 | ||
82 | if ud.user == None: | 82 | if not ud.user: |
83 | hgroot = host + ud.path | 83 | hgroot = host + ud.path |
84 | else: | 84 | else: |
85 | hgroot = ud.user + "@" + host + ud.path | 85 | hgroot = ud.user + "@" + host + ud.path |