Skip to content

Commit

Permalink
fix($main): fix variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
supermamon committed Aug 8, 2018
1 parent 0399a40 commit 03f7f0c
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,7 @@ Options:

## Changelog

* v0.1.1
+ variable name correction
* v0.1.0
+ Base functionality. No switches available besides `--help` and `--version`
18 changes: 16 additions & 2 deletions dpkg-scanpackages.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,22 @@
# Copyright 2018 Raymond Velasquez

# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at

# http://www.apache.org/licenses/LICENSE-2.0

# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

# Script: dpkg-scanpackages.py
# Author: Raymond Velasquez <[email protected]>

script_name = 'dpkg-scanpackages.py'
script_version = '0.1.0'
script_version = '0.1.1'

import glob, sys, os
from pydpkg import Dpkg
Expand Down Expand Up @@ -81,7 +95,7 @@ def main(argv):
arg_len = len(argv)

opts = '-? --help --version'
deb_dir = "./"
binary_path = "./"

if arg_len < 2:
print_error('one argument expected')
Expand Down

0 comments on commit 03f7f0c

Please sign in to comment.