Skip to content

Commit a10d150

Browse files
committed
Update output of "sbase convert FILE.py" for Python 3
1 parent 749dee5 commit a10d150

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

seleniumbase/utilities/selenium_ide/convert_ide.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -734,7 +734,7 @@ def main():
734734
seleniumbase_lines.append(lines[line_num])
735735

736736
seleniumbase_code = ""
737-
if has_unicode:
737+
if has_unicode and sys.version_info[0] < 3:
738738
seleniumbase_code = "# -*- coding: utf-8 -*-\n"
739739
if uses_keys:
740740
seleniumbase_code += (

0 commit comments

Comments
 (0)