Skip to content
This repository was archived by the owner on Oct 2, 2020. It is now read-only.

Commit a9806d6

Browse files
author
Dulshani Gunawardhana
committed
Issue webcompat#983: Removed trailing space
1 parent b21d155 commit a9806d6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

webcompat/helpers.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -133,10 +133,10 @@ def get_browser(user_agent_string):
133133
version = ''
134134
# Check for tablet devices
135135
if ua_dict.get('device').get('model') == 'Tablet':
136-
model = '(Tablet)'
136+
model = ' (Tablet)'
137137
else:
138138
model = ''
139-
return '{0} {1} {2}'.format(name, version, model)
139+
return '{0} {1}{2}'.format(name, version, model)
140140

141141

142142
def get_os(user_agent_string):

0 commit comments

Comments
 (0)