mirror of
https://github.com/GAM-team/GAM.git
synced 2026-06-28 09:51:36 +00:00
Fix typo, clean up imports (#381)
* Fix typo, utils.py needs a few globals * Clean up imports
This commit is contained in:
@@ -31,10 +31,8 @@ import string
|
||||
import time
|
||||
import base64
|
||||
import codecs
|
||||
import collections
|
||||
import csv
|
||||
import datetime
|
||||
from htmlentitydefs import name2codepoint
|
||||
import json
|
||||
import mimetypes
|
||||
import platform
|
||||
@@ -8942,8 +8940,8 @@ def doPrintLicenses(return_list=False, skus=None):
|
||||
lic = buildGAPIObject(u'licensing')
|
||||
products = []
|
||||
for sku in SKUS.values():
|
||||
if sku[u'product'] not in products:
|
||||
products.append(sku[u'product'])
|
||||
if sku[u'product'] not in products:
|
||||
products.append(sku[u'product'])
|
||||
products.sort()
|
||||
licenses = []
|
||||
titles = [u'userId', u'productId', u'skuId']
|
||||
|
||||
@@ -1,3 +1,6 @@
|
||||
from var import GM_Globals, GM_WINDOWS, GM_SYS_ENCODING
|
||||
import collections
|
||||
from htmlentitydefs import name2codepoint
|
||||
from HTMLParser import HTMLParser
|
||||
|
||||
def convertUTF8(data):
|
||||
|
||||
Reference in New Issue
Block a user