diff options
-rw-r--r-- | Makefile | 2 | ||||
-rwxr-xr-x | debian/rules | 2 | ||||
-rw-r--r-- | rscalib/__init__.py (renamed from tccalib/__init__.py) | 0 | ||||
-rw-r--r-- | rscalib/tests/__init__.py (renamed from tccalib/tests/__init__.py) | 2 | ||||
-rw-r--r-- | setup.py | 4 | ||||
-rwxr-xr-x | thinclient-config-agent | 2 |
6 files changed, 6 insertions, 6 deletions
@@ -1,5 +1,5 @@ lint: pyflakes $$(find -name '*.py') $$(grep '^#!.*python' $$(bzr ls -Vkfile) -l) check: - python3 -m unittest tccalib.tests + python3 -m unittest rscalib.tests .PHONY: lint check diff --git a/debian/rules b/debian/rules index c4f1a51..8a9d0d8 100755 --- a/debian/rules +++ b/debian/rules @@ -17,7 +17,7 @@ override_dh_auto_build: override_dh_auto_test: ifeq ($(filter nocheck,$(DEB_BUILD_OPTIONS)),) set -ex; for python in $(PY3VERS) ; do \ - $$python -m unittest tccalib.tests ; \ + $$python -m unittest rscalib.tests ; \ done endif diff --git a/tccalib/__init__.py b/rscalib/__init__.py index 9c61844..9c61844 100644 --- a/tccalib/__init__.py +++ b/rscalib/__init__.py diff --git a/tccalib/tests/__init__.py b/rscalib/tests/__init__.py index 6323600..c3a8afa 100644 --- a/tccalib/tests/__init__.py +++ b/rscalib/tests/__init__.py @@ -12,7 +12,7 @@ import base64 import pycurl from io import BytesIO -from tccalib import ( +from rscalib import ( CertificateVerificationFailed, CouldNotConnect, GetMazaData, @@ -9,6 +9,6 @@ setup( license='GPL', description='Retrieve the list of remote desktop servers for a user.', long_description='Retrieve the list of remote desktop servers for a user.', - packages=['tccalib'], - test_suite='tccalib', + packages=['rscalib'], + test_suite='rscalib', ) diff --git a/thinclient-config-agent b/thinclient-config-agent index 1140c97..3d7b5bc 100755 --- a/thinclient-config-agent +++ b/thinclient-config-agent @@ -6,7 +6,7 @@ from optparse import OptionParser import os import sys -from tccalib import ( +from rscalib import ( api_versions, UserError, ) |