Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixing issue #920 #1907

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 4 additions & 0 deletions shell_integration/nautilus/syncstate.py
Expand Up @@ -17,6 +17,9 @@

import sys
python3 = sys.version_info[0] >= 3
if not python3:
reload(sys)
sys.setdefaultencoding('utf-8')

import os
import urllib
Expand All @@ -28,6 +31,7 @@

from gi.repository import GObject, Nautilus


# Please do not touch the following line.
# The reason is that we use a script to adopt this file for branding
# by replacing this line with the branding app name. If the following
Expand Down